Problem Statement:

Primary objective is to understand the factors contributing to This dataset is gathered practically based on applications used on phone such as social media, learning application and research application by analyzing time consumed on whatsapp, instagram, linkedIn, Reddit and Twitter.

We aim to investigate how these social media components influence the Weekly feelings (1-5) and morning tiredness(1 and 0).

By identifying the key contributors to Time Consumption, we strive to provide insights that can assist application users in enhancing their productivity in daily life.

Questions:

  1. Explain the data collection process (10 points)

Updation frequency: Weekly

Description:

This dataset is gathered practically based on applications used on phone such as social media, learning application and research application by analyzing time usage for each application by MVA students.

objective is to use the provided data to predict dependent variables such as impact of using such applications on personal basis (Morning Tiredness, Weekly Feeling). This project presents a straightforward yet demanding task: forecasting the impact of using social media on feeling.

This data frame contains the following columns:

Input variables (based on time consumption):

Independent variables :

Instagram_Time Linkedin_Time Snapchat_Time Twitter_Time Whatsapp_Time Youtube_Time OTT_Time Reddit_Time Application Type Interview_call_received Networking Learning

Dependent variable :

Mood_Productivity Morning_tireness Weekly_Feelings

Objective: Understand the Dataset & cleanup (if required).

Build classification models to predict the weekly Mood.

Also fine-tune the hyperparameters & compare the evaluation metrics of various classification algorithms.

Loading Data:

library(MASS)
library(ggplot2)
## Warning: package 'ggplot2' was built under R version 4.3.2
library(memisc)
## Warning: package 'memisc' was built under R version 4.3.3
## Loading required package: lattice
## 
## Attaching package: 'memisc'
## The following object is masked from 'package:ggplot2':
## 
##     syms
## The following objects are masked from 'package:stats':
## 
##     contr.sum, contr.treatment, contrasts
## The following object is masked from 'package:base':
## 
##     as.array
library(ROCR)
## Warning: package 'ROCR' was built under R version 4.3.3
library(dplyr)
## 
## Attaching package: 'dplyr'
## The following objects are masked from 'package:memisc':
## 
##     collect, recode, rename, syms
## The following object is masked from 'package:MASS':
## 
##     select
## The following objects are masked from 'package:stats':
## 
##     filter, lag
## The following objects are masked from 'package:base':
## 
##     intersect, setdiff, setequal, union
library(klaR)
## Warning: package 'klaR' was built under R version 4.3.3
# Library to read CSV file
library(readr)
## Warning: package 'readr' was built under R version 4.3.2
# Data visualization libraries
library(ggplot2)     # ggplot2 for creating versatile plots
library(ggcorrplot)  # ggcorrplot for visualizing correlation matrices
## Warning: package 'ggcorrplot' was built under R version 4.3.2
library(ggridges)    # ggridges for creating ridge plots
## Warning: package 'ggridges' was built under R version 4.3.2
library(ggvis)       # ggvis for interactive web-based visualizations
## Warning: package 'ggvis' was built under R version 4.3.2
## 
## Attaching package: 'ggvis'
## The following object is masked from 'package:ggplot2':
## 
##     resolution
library(ggthemes)    # ggthemes for additional plot themes
## Warning: package 'ggthemes' was built under R version 4.3.2
library(cowplot)     # cowplot for arranging and annotating plots
## Warning: package 'cowplot' was built under R version 4.3.2
## 
## Attaching package: 'cowplot'
## The following object is masked from 'package:ggthemes':
## 
##     theme_map
library(gganimate)   # gganimate for creating animated plots
## Warning: package 'gganimate' was built under R version 4.3.2
## No renderer backend detected. gganimate will default to writing frames to separate files
## Consider installing:
## - the `gifski` package for gif output
## - the `av` package for video output
## and restarting the R session
## 
## Attaching package: 'gganimate'
## The following object is masked from 'package:ggvis':
## 
##     view_static
# Data manipulation and analysis libraries
library(caret)       # caret for machine learning model building and evaluation
## Warning: package 'caret' was built under R version 4.3.2
library(dplyr)       # dplyr for data manipulation
library(tidyverse)   # tidyverse for data wrangling
## Warning: package 'tidyverse' was built under R version 4.3.2
## Warning: package 'forcats' was built under R version 4.3.2
## Warning: package 'lubridate' was built under R version 4.3.2
## ── Attaching core tidyverse packages ──────────────────────── tidyverse 2.0.0 ──
## ✔ forcats   1.0.0     ✔ stringr   1.5.0
## ✔ lubridate 1.9.3     ✔ tibble    3.2.1
## ✔ purrr     1.0.2     ✔ tidyr     1.3.0
## ── Conflicts ────────────────────────────────────────── tidyverse_conflicts() ──
## ✖ purrr::%@%()             masks memisc::%@%()
## ✖ lubridate::as.interval() masks memisc::as.interval()
## ✖ dplyr::collect()         masks memisc::collect()
## ✖ dplyr::filter()          masks stats::filter()
## ✖ lubridate::is.interval() masks memisc::is.interval()
## ✖ dplyr::lag()             masks stats::lag()
## ✖ purrr::lift()            masks caret::lift()
## ✖ dplyr::recode()          masks memisc::recode()
## ✖ dplyr::rename()          masks memisc::rename()
## ✖ ggvis::resolution()      masks ggplot2::resolution()
## ✖ dplyr::select()          masks MASS::select()
## ✖ lubridate::stamp()       masks cowplot::stamp()
## ✖ dplyr::syms()            masks memisc::syms(), ggplot2::syms()
## ✖ tibble::view()           masks memisc::view()
## ℹ Use the conflicted package (<http://conflicted.r-lib.org/>) to force all conflicts to become errors
library(GGally)      # GGally for plot matrix visualizations
## Warning: package 'GGally' was built under R version 4.3.2
## Registered S3 method overwritten by 'GGally':
##   method from   
##   +.gg   ggplot2
# Load the psych package
library(psych)
## Warning: package 'psych' was built under R version 4.3.3
## 
## Attaching package: 'psych'
## 
## The following objects are masked from 'package:ggplot2':
## 
##     %+%, alpha
options(scipen=999)
library(readr) # Library to read CSV file
library(ggplot2)
# Load necessary libraries
library(ggplot2)
library(ggcorrplot)
library(caret)
library(scatterplot3d)
library(SciViews)
## Warning: package 'SciViews' was built under R version 4.3.2
library(car)
## Loading required package: carData
## 
## Attaching package: 'car'
## 
## The following object is masked from 'package:psych':
## 
##     logit
## 
## The following object is masked from 'package:purrr':
## 
##     some
## 
## The following object is masked from 'package:dplyr':
## 
##     recode
## 
## The following object is masked from 'package:memisc':
## 
##     recode
library(lattice)
library(GGally)
# load packages
library(lattice)
library(ggplot2)


library(ggridges)
library(ggvis)
library(ggthemes)
library(cowplot)
library(gapminder)
## Warning: package 'gapminder' was built under R version 4.3.2
library(gganimate)
library(dplyr)
library(tidyverse)

# Additional visualization libraries
library(scatterplot3d)  # scatterplot3d for 3D scatter plots
library(SciViews)       # SciViews for scientific data visualization
library(car)            # car for additional regression plots
library(lattice)        # lattice for lattice plots
library(grid)           # grid for low-level plotting functions
library(gridExtra)      # gridExtra for arranging multiple plots
## 
## Attaching package: 'gridExtra'
## 
## The following object is masked from 'package:dplyr':
## 
##     combine
library(RColorBrewer)  # RColorBrewer for additional color palettes
library(gapminder)     # gapminder for example dataset
library(readxl)
## Warning: package 'readxl' was built under R version 4.3.3
social_media <- read_excel("C:/Users/Vishal/Downloads/MVA_CLASS_COMBINE.xlsx")
## New names:
## • `Hours spent (HH:MM)
 Input N/A if not a user` -> `Hours spent (HH:MM)
 Input
##   N/A if not a user...3`
## • `Hours spent (HH:MM)
 Input N/A if not a user` -> `Hours spent (HH:MM)
 Input
##   N/A if not a user...5`
## • `Hours spent (HH:MM)
 Input N/A if not a user` -> `Hours spent (HH:MM)
 Input
##   N/A if not a user...7`
## • `Hours spent (HH:MM)
 Input N/A if not a user` -> `Hours spent (HH:MM)
 Input
##   N/A if not a user...9`
## • `Hours spent (HH:MM)
 Input N/A if not a user` -> `Hours spent (HH:MM)
 Input
##   N/A if not a user...11`
## • `Hours spent (HH:MM)
 Input N/A if not a user` -> `Hours spent (HH:MM)
 Input
##   N/A if not a user...13`
## • `Hours spent (HH:MM)
 Input N/A if not a user` -> `Hours spent (HH:MM)
 Input
##   N/A if not a user...15`
## • `Hours spent (HH:MM)
 Input N/A if not a user` -> `Hours spent (HH:MM)
 Input
##   N/A if not a user...17`
social_media
## # A tibble: 21 × 25
##    Enter 5 character id ( not your n…¹ Instagram Hours spent (HH:MM)\…² Linkedin
##    <chr>                               <chr>     <chr>                  <chr>   
##  1 masinl                              Yes       3.5                    Yes     
##  2 peace                               Yes       0.32222222222222224    Yes     
##  3 Patty                               Yes       0.15694444444444444    Yes     
##  4 Bunny                               Yes       0.22430555555555556    Yes     
##  5 tl868                               No        N/A                    Yes     
##  6 drphy                               Yes       9.7222222222222224E-2  Yes     
##  7 trave                               yes       0.22361111111111112    yes     
##  8 19!@s                               Yes       0.29166666666666669    Yes     
##  9 yh2020                              Yes       0.36041666666666666    Yes     
## 10 ds2134                              Yes       6.9444444444444441E-3  Yes     
## # ℹ 11 more rows
## # ℹ abbreviated names:
## #   ¹​`Enter 5 character id ( not your net id, or your name). It should be same throughout the survey.`,
## #   ²​`Hours spent (HH:MM)\r\nInput N/A if not a user...3`
## # ℹ 21 more variables:
## #   `Hours spent (HH:MM)\r\nInput N/A if not a user...5` <chr>, Snapchat <chr>,
## #   `Hours spent (HH:MM)\r\nInput N/A if not a user...7` <chr>, …
str(social_media)
## tibble [21 × 25] (S3: tbl_df/tbl/data.frame)
##  $ Enter 5 character id ( not your net id, or your name). It should be same throughout the survey.: chr [1:21] "masinl" "peace" "Patty" "Bunny" ...
##  $ Instagram                                                                                      : chr [1:21] "Yes" "Yes" "Yes" "Yes" ...
##  $ Hours spent (HH:MM)
## Input N/A if not a user...3                                             : chr [1:21] "3.5" "0.32222222222222224" "0.15694444444444444" "0.22430555555555556" ...
##  $ Linkedin                                                                                       : chr [1:21] "Yes" "Yes" "Yes" "Yes" ...
##  $ Hours spent (HH:MM)
## Input N/A if not a user...5                                             : chr [1:21] "4" "0.21666666666666667" "0.29166666666666669" "0.22152777777777777" ...
##  $ Snapchat                                                                                       : chr [1:21] "Yes" "Yes" "Yes" "Yes" ...
##  $ Hours spent (HH:MM)
## Input N/A if not a user...7                                             : chr [1:21] "1" "0.15347222222222223" "2.2222222222222223E-2" "5.4166666666666669E-2" ...
##  $ Twitter                                                                                        : chr [1:21] "Yes" "No" "No" "No" ...
##  $ Hours spent (HH:MM)
## Input N/A if not a user...9                                             : chr [1:21] "5" "0" "N/A" "N/A" ...
##  $ Whatsapp/ Wechat                                                                               : chr [1:21] "Yes" "Yes" "Yes" "Yes" ...
##  $ Hours spent (HH:MM)
## Input N/A if not a user...11                                            : chr [1:21] "1" "0.17430555555555555" "0.40972222222222221" "0.22083333333333333" ...
##  $ Youtube                                                                                        : chr [1:21] "Yes" "Yes" "Yes" "Yes" ...
##  $ Hours spent (HH:MM)
## Input N/A if not a user...13                                            : chr [1:21] "2.5" "0.17708333333333334" "7.7083333333333337E-2" "8.3333333333333329E-2" ...
##  $ OTT (Netflix, Hulu, Prime video)                                                               : chr [1:21] "Yes" "No" "Yes" "Yes" ...
##  $ Hours spent (HH:MM)
## Input N/A if not a user...15                                            : chr [1:21] "14.5" "0" "8.3333333333333329E-2" "8.3333333333333329E-2" ...
##  $ Reddit                                                                                         : chr [1:21] "Yes" "No" "No" "No" ...
##  $ Hours spent (HH:MM)
## Input N/A if not a user...17                                            : chr [1:21] "2.5" "0" "N/A" "N.A" ...
##  $ Application type(Social media, OTT, Learning)                                                  : chr [1:21] "OTT" "Social Media" "Social Media" "Social Media" ...
##  $ How many job interview calls received in this week.?                                           : chr [1:21] "N/A" "0" "0" "2" ...
##  $ How much networking done with coffee chats?                                                    : chr [1:21] "N/A" "1" "0" "0" ...
##  $ How many learning done in terms of items created?                                              : num [1:21] 3 3 4 4 4 4 3 2 6 2 ...
##  $ Mood Productivity                                                                              : chr [1:21] "Yes" "Yes" "Yes" "Yes" ...
##  $ Tired waking up in morning                                                                     : chr [1:21] "No" "No" "No" "No" ...
##  $ Trouble falling asleep                                                                         : chr [1:21] "No" "Yes" "No" "No" ...
##  $ How you felt the entire week?                                                                  : num [1:21] 3 3 4 4 3 5 4 4 3 2 ...
social_media_cleaned <- social_media[,-1]

changing column names:

#changing column names
change_cols_index <- c(2,4,6,8,10,12,14,16,17,18,19,20,21,22,23,24)
change_cols_name <- c("Instagram_Time", "Linkedin_Time", "Snapchat_Time", "Twitter_Time", "Whatsapp_Time", "Youtube_Time", "OTT_Time", "Reddit_Time", "Application Type", "Interview_call_received", "Networking", "Learning", "Mood_Productivity", "Morning_tireness", "Morning_tireness", "Weekly_Feelings")
colnames(social_media_cleaned)[change_cols_index] <- change_cols_name



social_media_cleaned
## # A tibble: 21 × 24
##    Instagram Instagram_Time        Linkedin Linkedin_Time Snapchat Snapchat_Time
##    <chr>     <chr>                 <chr>    <chr>         <chr>    <chr>        
##  1 Yes       3.5                   Yes      4             Yes      1            
##  2 Yes       0.32222222222222224   Yes      0.2166666666… Yes      0.1534722222…
##  3 Yes       0.15694444444444444   Yes      0.2916666666… Yes      2.2222222222…
##  4 Yes       0.22430555555555556   Yes      0.2215277777… Yes      5.4166666666…
##  5 No        N/A                   Yes      2.4305555555… No       N/A          
##  6 Yes       9.7222222222222224E-2 Yes      0.2916666666… Yes      1.9444444444…
##  7 yes       0.22361111111111112   yes      0.1666666666… No       <NA>         
##  8 Yes       0.29166666666666669   Yes      0.1666666666… Yes      0.125        
##  9 Yes       0.36041666666666666   Yes      10:00         Yes      03:50        
## 10 Yes       6.9444444444444441E-3 Yes      0             No       N/A          
## # ℹ 11 more rows
## # ℹ 18 more variables: Twitter <chr>, Twitter_Time <chr>,
## #   `Whatsapp/ Wechat` <chr>, Whatsapp_Time <chr>, Youtube <chr>,
## #   Youtube_Time <chr>, `OTT (Netflix, Hulu, Prime video)` <chr>,
## #   OTT_Time <chr>, Reddit <chr>, Reddit_Time <chr>, `Application Type` <chr>,
## #   Interview_call_received <chr>, Networking <chr>, Learning <dbl>,
## #   Mood_Productivity <chr>, Morning_tireness <chr>, Morning_tireness <chr>, …

Cleaning Data:

Cleaning Null values

# Convert "NA", "N/A", "n/a", "na", "N.A", "n.a" to 0
social_media_cleaned[social_media_cleaned == "NA" | social_media_cleaned == "N/A" | social_media_cleaned == "na" | social_media_cleaned == "n/a" | social_media_cleaned == "N.A" | social_media_cleaned == "n.a" | social_media_cleaned == "0" | social_media_cleaned == ""] <- NA
social_media_cleaned
## # A tibble: 21 × 24
##    Instagram Instagram_Time        Linkedin Linkedin_Time Snapchat Snapchat_Time
##    <chr>     <chr>                 <chr>    <chr>         <chr>    <chr>        
##  1 Yes       3.5                   Yes      4             Yes      1            
##  2 Yes       0.32222222222222224   Yes      0.2166666666… Yes      0.1534722222…
##  3 Yes       0.15694444444444444   Yes      0.2916666666… Yes      2.2222222222…
##  4 Yes       0.22430555555555556   Yes      0.2215277777… Yes      5.4166666666…
##  5 No        <NA>                  Yes      2.4305555555… No       <NA>         
##  6 Yes       9.7222222222222224E-2 Yes      0.2916666666… Yes      1.9444444444…
##  7 yes       0.22361111111111112   yes      0.1666666666… No       <NA>         
##  8 Yes       0.29166666666666669   Yes      0.1666666666… Yes      0.125        
##  9 Yes       0.36041666666666666   Yes      10:00         Yes      03:50        
## 10 Yes       6.9444444444444441E-3 Yes      <NA>          No       <NA>         
## # ℹ 11 more rows
## # ℹ 18 more variables: Twitter <chr>, Twitter_Time <chr>,
## #   `Whatsapp/ Wechat` <chr>, Whatsapp_Time <chr>, Youtube <chr>,
## #   Youtube_Time <chr>, `OTT (Netflix, Hulu, Prime video)` <chr>,
## #   OTT_Time <chr>, Reddit <chr>, Reddit_Time <chr>, `Application Type` <chr>,
## #   Interview_call_received <chr>, Networking <chr>, Learning <dbl>,
## #   Mood_Productivity <chr>, Morning_tireness <chr>, Morning_tireness <chr>, …

Null values converted to 0

social_media_cleaned[is.na(social_media_cleaned)] <- '0'
social_media_cleaned
## # A tibble: 21 × 24
##    Instagram Instagram_Time        Linkedin Linkedin_Time Snapchat Snapchat_Time
##    <chr>     <chr>                 <chr>    <chr>         <chr>    <chr>        
##  1 Yes       3.5                   Yes      4             Yes      1            
##  2 Yes       0.32222222222222224   Yes      0.2166666666… Yes      0.1534722222…
##  3 Yes       0.15694444444444444   Yes      0.2916666666… Yes      2.2222222222…
##  4 Yes       0.22430555555555556   Yes      0.2215277777… Yes      5.4166666666…
##  5 No        0                     Yes      2.4305555555… No       0            
##  6 Yes       9.7222222222222224E-2 Yes      0.2916666666… Yes      1.9444444444…
##  7 yes       0.22361111111111112   yes      0.1666666666… No       0            
##  8 Yes       0.29166666666666669   Yes      0.1666666666… Yes      0.125        
##  9 Yes       0.36041666666666666   Yes      10:00         Yes      03:50        
## 10 Yes       6.9444444444444441E-3 Yes      0             No       0            
## # ℹ 11 more rows
## # ℹ 18 more variables: Twitter <chr>, Twitter_Time <chr>,
## #   `Whatsapp/ Wechat` <chr>, Whatsapp_Time <chr>, Youtube <chr>,
## #   Youtube_Time <chr>, `OTT (Netflix, Hulu, Prime video)` <chr>,
## #   OTT_Time <chr>, Reddit <chr>, Reddit_Time <chr>, `Application Type` <chr>,
## #   Interview_call_received <chr>, Networking <chr>, Learning <dbl>,
## #   Mood_Productivity <chr>, Morning_tireness <chr>, Morning_tireness <chr>, …

Keeping relevant columns only: All time columns + label to predict (“How did you feel enitre week”) + Application type

# Define a function to convert time strings to decimal hours
convert_to_decimal_hours <- function(time_string) {
# Check if NA values are present
if (any(is.na(time_string))) {
         return(rep(NA, length(time_string)))  # Return NA for NA values
     }
     
# Define a function to convert HH:MM format to decimal hours
     hhmm_to_decimal <- function(hhmm) {
         parts <- as.numeric(strsplit(hhmm, ":")[[1]])  # Split into hours and minutes
         hours <- parts[1]
         minutes <- ifelse(length(parts) > 1, parts[2], 0)  # Handle missing minutes
         total_hours <- hours + minutes / 60
         return(total_hours)
     }
     
# Convert time strings to decimal hours
decimal_hours <- sapply(time_string, function(x) {
         if (grepl("^\\d+:\\d+$", x)) {
             return(hhmm_to_decimal(x))  # Convert HH:MM format
         } else if (grepl("^\\d+\\.\\d+$", x)) {
             return(as.numeric(x))  # Convert decimal format
         } else if (grepl("^\\d+$", x)) {
             return(as.numeric(x))  # Convert whole numbers
         } else {
             return(NA)  # Return NA for other cases
         }
     })
     
     return(decimal_hours)
}

time_columns <- c("Instagram_Time", "Linkedin_Time", "Snapchat_Time", "Twitter_Time", "Whatsapp_Time", "Youtube_Time", "OTT_Time", "Reddit_Time") 
# Apply the conversion function to all time columns
social_media_cleaned[time_columns] <- lapply(social_media_cleaned[time_columns], convert_to_decimal_hours)
 
# Verify the result
str(social_media_cleaned)
## tibble [21 × 24] (S3: tbl_df/tbl/data.frame)
##  $ Instagram                       : chr [1:21] "Yes" "Yes" "Yes" "Yes" ...
##  $ Instagram_Time                  : Named num [1:21] 3.5 0.322 0.157 0.224 0 ...
##   ..- attr(*, "names")= chr [1:21] "3.5" "0.32222222222222224" "0.15694444444444444" "0.22430555555555556" ...
##  $ Linkedin                        : chr [1:21] "Yes" "Yes" "Yes" "Yes" ...
##  $ Linkedin_Time                   : Named num [1:21] 4 0.217 0.292 0.222 NA ...
##   ..- attr(*, "names")= chr [1:21] "4" "0.21666666666666667" "0.29166666666666669" "0.22152777777777777" ...
##  $ Snapchat                        : chr [1:21] "Yes" "Yes" "Yes" "Yes" ...
##  $ Snapchat_Time                   : Named num [1:21] 1 0.153 NA NA 0 ...
##   ..- attr(*, "names")= chr [1:21] "1" "0.15347222222222223" "2.2222222222222223E-2" "5.4166666666666669E-2" ...
##  $ Twitter                         : chr [1:21] "Yes" "No" "No" "No" ...
##  $ Twitter_Time                    : Named num [1:21] 5 0 0 0 NA 0 0 0 0 0 ...
##   ..- attr(*, "names")= chr [1:21] "5" "0" "0" "0" ...
##  $ Whatsapp/ Wechat                : chr [1:21] "Yes" "Yes" "Yes" "Yes" ...
##  $ Whatsapp_Time                   : Named num [1:21] 1 0.174 0.41 0.221 0.125 ...
##   ..- attr(*, "names")= chr [1:21] "1" "0.17430555555555555" "0.40972222222222221" "0.22083333333333333" ...
##  $ Youtube                         : chr [1:21] "Yes" "Yes" "Yes" "Yes" ...
##  $ Youtube_Time                    : Named num [1:21] 2.5 0.177 NA NA 0.146 ...
##   ..- attr(*, "names")= chr [1:21] "2.5" "0.17708333333333334" "7.7083333333333337E-2" "8.3333333333333329E-2" ...
##  $ OTT (Netflix, Hulu, Prime video): chr [1:21] "Yes" "No" "Yes" "Yes" ...
##  $ OTT_Time                        : Named num [1:21] 14.5 0 NA NA NA 0.125 0 0.125 3 0 ...
##   ..- attr(*, "names")= chr [1:21] "14.5" "0" "8.3333333333333329E-2" "8.3333333333333329E-2" ...
##  $ Reddit                          : chr [1:21] "Yes" "No" "No" "No" ...
##  $ Reddit_Time                     : Named num [1:21] 2.5 0 0 0 NA 0 0 0 0 0 ...
##   ..- attr(*, "names")= chr [1:21] "2.5" "0" "0" "0" ...
##  $ Application Type                : chr [1:21] "OTT" "Social Media" "Social Media" "Social Media" ...
##  $ Interview_call_received         : chr [1:21] "0" "0" "0" "2" ...
##  $ Networking                      : chr [1:21] "0" "1" "0" "0" ...
##  $ Learning                        : num [1:21] 3 3 4 4 4 4 3 2 6 2 ...
##  $ Mood_Productivity               : chr [1:21] "Yes" "Yes" "Yes" "Yes" ...
##  $ Morning_tireness                : chr [1:21] "No" "No" "No" "No" ...
##  $ Morning_tireness                : chr [1:21] "No" "Yes" "No" "No" ...
##  $ Weekly_Feelings                 : num [1:21] 3 3 4 4 3 5 4 4 3 2 ...
#Dropping the name columns
social_media_cleaned <- social_media_cleaned[, -c(1, 3, 5, 7, 9, 11, 13, 15)] 
social_media_cleaned
## # A tibble: 21 × 16
##    Instagram_Time Linkedin_Time Snapchat_Time Twitter_Time Whatsapp_Time
##             <dbl>         <dbl>         <dbl>        <dbl>         <dbl>
##  1          3.5           4             1                5         1    
##  2          0.322         0.217         0.153            0         0.174
##  3          0.157         0.292        NA                0         0.410
##  4          0.224         0.222        NA                0         0.221
##  5          0            NA             0               NA         0.125
##  6         NA             0.292        NA                0         0.5  
##  7          0.224         0.167         0                0         0.25 
##  8          0.292         0.167         0.125            0         0.417
##  9          0.360        10             3.83             0         6.15 
## 10         NA             0             0                0        NA    
## # ℹ 11 more rows
## # ℹ 11 more variables: Youtube_Time <dbl>, OTT_Time <dbl>, Reddit_Time <dbl>,
## #   `Application Type` <chr>, Interview_call_received <chr>, Networking <chr>,
## #   Learning <dbl>, Mood_Productivity <chr>, Morning_tireness <chr>,
## #   Morning_tireness <chr>, Weekly_Feelings <dbl>

Data Preporcessing:

Replace mean value with null values for data preprocessing

# Loop through each column in time_columns
social_media_cleaned[time_columns] <- lapply(social_media_cleaned[time_columns], function(x) {
  # Calculate mean of the column excluding NA values
  mean_value <- mean(x, na.rm = TRUE)
  # Replace NA values with the mean
  x[is.na(x)] <- mean_value
  return(x)
})

# Print the updated data frame
print(social_media_cleaned)
## # A tibble: 21 × 16
##    Instagram_Time Linkedin_Time Snapchat_Time Twitter_Time Whatsapp_Time
##             <dbl>         <dbl>         <dbl>        <dbl>         <dbl>
##  1          3.5           4             1            5             1    
##  2          0.322         0.217         0.153        0             0.174
##  3          0.157         0.292         0.503        0             0.410
##  4          0.224         0.222         0.503        0             0.221
##  5          0             1.11          0            0.290         0.125
##  6          0.722         0.292         0.503        0             0.5  
##  7          0.224         0.167         0            0             0.25 
##  8          0.292         0.167         0.125        0             0.417
##  9          0.360        10             3.83         0             6.15 
## 10          0.722         0             0            0             0.908
## # ℹ 11 more rows
## # ℹ 11 more variables: Youtube_Time <dbl>, OTT_Time <dbl>, Reddit_Time <dbl>,
## #   `Application Type` <chr>, Interview_call_received <chr>, Networking <chr>,
## #   Learning <dbl>, Mood_Productivity <chr>, Morning_tireness <chr>,
## #   Morning_tireness <chr>, Weekly_Feelings <dbl>

*************************2) Exploratory Data Analysis and Visualizations (50 points)********************************

Univariate Analysis

Instagram Time: Time spent on Instagram has a slightly wider IQR than WhatsApp, indicating a more varied amount of usage among the users, with some outliers spending a lot more time.

Snapchat Time: The IQR for Snapchat is similar to Instagram, but the median appears to be slightly lower, which suggests that users, on average, might be spending less time on Snapchat compared to Instagram.

WhatsApp Time: In this context, when compared with Instagram and Snapchat, the WhatsApp box plot indicates a lower median time and fewer outliers, suggesting less variability in usage times.

WhatsApp Time: Users tend to spend a low to moderate amount of time on WhatsApp, with a relatively tight interquartile range (IQR), suggesting consistent usage among the population sampled.

YouTube Time: The spread of time spent on YouTube is similar to WhatsApp, with some outliers indicating that a few users spend significantly more time on this platform.

OTT Time: Over-The-Top (OTT) media services show a wider IQR compared to WhatsApp and YouTube, which indicates more variability in how much time users spend streaming content.

Reddit Time: The majority of users spend very little time on Reddit, as indicated by the compact box and the IQR close to zero.

However, there are outliers that spend a considerably higher amount of time on the platform. From the second image:

boxplot(social_media_cleaned[,1:5])

boxplot(social_media_cleaned[,5:8])

# Define a function to normalize a numeric vector to the range [0, 1]
normalize <- function(x) {
  (x - min(x)) / (max(x) - min(x))
}

# Apply normalization to columns 1 to 8
social_media_normalized <- as.data.frame(lapply(social_media_cleaned[, 1:8], normalize))

# Check the structure of the normalized dataset
str(social_media_normalized)
## 'data.frame':    21 obs. of  8 variables:
##  $ Instagram_Time: num  0.6603 0.0608 0.0296 0.0423 0 ...
##  $ Linkedin_Time : num  0.4 0.0217 0.0292 0.0222 0.1112 ...
##  $ Snapchat_Time : num  0.261 0.04 0.131 0.131 0 ...
##  $ Twitter_Time  : num  1 0 0 0 0.058 ...
##  $ Whatsapp_Time : num  0.14523 0.00818 0.04726 0.01591 0 ...
##  $ Youtube_Time  : num  0.625 0.0443 0.1411 0.1411 0.0365 ...
##  $ OTT_Time      : num  1 0 0.0996 0.0996 0.0996 ...
##  $ Reddit_Time   : num  1 0 0 0 0.062 ...
# Now you can use the boxplot function on the normalized dataset
boxplot(social_media_normalized)

boxplot(social_media_normalized[,1:5])

boxplot(social_media_normalized[,5:8])

Count of Morning Feeling:

A larger number of individuals reported not feeling tired in the morning (as indicated by the “No” bar) compared to those who did feel tired (as indicated by the “Yes” bar).

This suggests that the majority of the respondents start their day feeling refreshed rather than tired.

Count of Mood Productivity:

The overwhelming majority of individuals reported feeling productive (as shown by the “Yes” bar), with only a very small number indicating they did not feel productive (as indicated by the “No” bar).

This could imply that the respondents generally have a positive mood concerning productivity or that they are engaged in activities or routines that promote productivity.

Count of Weekly Feeling:

The most common rating for weekly feelings is a 3 (as indicated by the green bar), suggesting that respondents generally feel neutral or average about their week.

Fewer individuals rated their weekly feelings as 4 (as indicated by the yellow bar), showing some positivity but less than the neutral response.

Very few individuals rated their weekly feelings as highly positive (5) or highly negative (2), as indicated by the blue and red bars respectively.

This distribution suggests that extreme feelings (either very positive or very negative) are less common among the respondents.

These insights provide an overview of how the group sampled perceives their mood and productivity, with a tendency towards not feeling tired in the morning, feeling productive, and experiencing a range of weekly feelings skewing away from the extremes towards a more moderate or neutral experience.

# Count the occurrences of "bad" and "good" in the quality column
quality_counts <- table(social_media_cleaned$Morning_tireness)

# Create a bar plot with count values displayed on top
ggplot(data = NULL, aes(x = names(quality_counts), y = quality_counts)) +
  geom_bar(stat = "identity", fill = c("pink", "green")) +
  geom_text(aes(label = quality_counts), vjust = -0.5, color = "black", size = 4) +  # Add count values on top of bars
  labs(title = "Count of Morning Feeling", x = "Morning Feeling", y = "Count") +
  theme_minimal()
## Don't know how to automatically pick scale for object of type <table>.
## Defaulting to continuous.
## Don't know how to automatically pick scale for object of type <table>.
## Defaulting to continuous.

# Count the occurrences of "bad" and "good" in the quality column
Productivity_counts <- table(social_media_cleaned$Mood_Productivity)

# Create a bar plot with count values displayed on top
ggplot(data = NULL, aes(x = names(Productivity_counts), y = Productivity_counts)) +
  geom_bar(stat = "identity", fill = c("red", "green")) +
  geom_text(aes(label = Productivity_counts), vjust = -0.5, color = "black", size = 4) +  # Add count values on top of bars
  labs(title = "Count of Mood Productivity", x = "Mood Productivity", y = "Count") +
  theme_minimal()
## Don't know how to automatically pick scale for object of type <table>.
## Defaulting to continuous.
## Don't know how to automatically pick scale for object of type <table>.
## Defaulting to continuous.

Weekly_count <- table(social_media_cleaned$Weekly_Feelings)
# Create a bar plot with count values displayed on top
ggplot(data = NULL, aes(x = names(Weekly_count), y = Weekly_count)) +
  geom_bar(stat = "identity", fill = c("red", "green","yellow","blue")) +
  geom_text(aes(label = Weekly_count), vjust = -0.5, color = "black", size = 4) +  # Add count values on top of bars
  labs(title = "Count of Weekly Feeling", x = "Weekly Feeling", y = "Count") +
  theme_minimal()
## Don't know how to automatically pick scale for object of type <table>.
## Defaulting to continuous.
## Don't know how to automatically pick scale for object of type <table>.
## Defaulting to continuous.

Morning Tiredness:

Yes - has larger area in bottom right area of star

No - is thin compared to Yes

stars(social_media_cleaned,labels = social_media_cleaned$Weekly_Feelings)

stars(social_media_cleaned,labels = social_media_cleaned$Morning_tireness)

Multivariate Analysis:

Correlation Plot

From the first heatmap (without Weekly Feelings):

There is a very high positive correlation between time spent on Twitter and WhatsApp, suggesting that individuals who spend more time on one tend to also spend more time on the other.

LinkedIn and Snapchat time are also highly positively correlated, indicating a similar behavior pattern as observed with Twitter and WhatsApp.

YouTube and OTT platforms share a significant positive correlation, which might reflect a broader interest in video content consumption across these platforms.

Instagram time shows moderate to low correlations with other platforms, suggesting more independent usage patterns from the others.

From the second heatmap (including Weekly Feelings):

LinkedIn time, Snapchat time, and Twitter time show strong positive correlations with one another, similar to the first heatmap.

The addition of ‘Weekly Feelings’ introduces a new perspective, but it appears to have a negligible to slightly negative correlation with all platforms, the strongest negative correlation being with LinkedIn time.

Reddit time shows negative correlations with LinkedIn, Snapchat, and Twitter time, and a very slight positive correlation with Instagram time, suggesting different user behavior patterns between these platforms.

Reddit time has a small negative correlation with ‘Weekly Feelings’, indicating that those who spend more time on Reddit may have slightly lower ‘Weekly Feelings’ scores, but the relationship is not strong.

colnames(social_media_cleaned)
##  [1] "Instagram_Time"          "Linkedin_Time"          
##  [3] "Snapchat_Time"           "Twitter_Time"           
##  [5] "Whatsapp_Time"           "Youtube_Time"           
##  [7] "OTT_Time"                "Reddit_Time"            
##  [9] "Application Type"        "Interview_call_received"
## [11] "Networking"              "Learning"               
## [13] "Mood_Productivity"       "Morning_tireness"       
## [15] "Morning_tireness"        "Weekly_Feelings"
correlation_matrix<- cor(social_media_cleaned[,0:8])
ggcorrplot(correlation_matrix,type = "lower", lab = TRUE)

# Calculate the correlation matrix for columns 1 to 8 and the 16th column
correlation_matrix <- cor(social_media_cleaned[, c(0:8, 16)])

# Load the ggcorrplot library
library(ggcorrplot)

# Plot the correlation matrix with ggcorrplot
ggcorrplot(correlation_matrix, type = "lower", lab = TRUE)

colnames(social_media_cleaned)
##  [1] "Instagram_Time"          "Linkedin_Time"          
##  [3] "Snapchat_Time"           "Twitter_Time"           
##  [5] "Whatsapp_Time"           "Youtube_Time"           
##  [7] "OTT_Time"                "Reddit_Time"            
##  [9] "Application Type"        "Interview_call_received"
## [11] "Networking"              "Learning"               
## [13] "Mood_Productivity"       "Morning_tireness"       
## [15] "Morning_tireness"        "Weekly_Feelings"
x <- dist(scale(social_media_cleaned[, 0:8],
                center = FALSE))

as.dist(round(as.matrix(x), 2)[1:15, 1:15])
##       1    2    3    4    5    6    7    8    9   10   11   12   13   14
## 2  8.33                                                                 
## 3  8.03 0.68                                                            
## 4  8.03 0.66 0.12                                                       
## 5  7.87 0.72 0.84 0.84                                                  
## 6  8.18 0.50 0.60 0.59 0.99                                             
## 7  8.38 0.19 0.79 0.78 0.70 0.66                                        
## 8  8.24 0.38 0.56 0.56 0.81 0.55 0.43                                   
## 9  8.95 7.38 6.92 6.99 7.29 7.05 7.48 7.18                              
## 10 8.30 0.54 0.92 0.94 0.98 0.61 0.51 0.59 7.35                         
## 11 8.12 0.76 0.61 0.68 0.96 0.60 0.85 0.63 6.65 0.88                    
## 12 8.10 0.58 0.46 0.44 0.74 0.62 0.68 0.72 7.23 0.90 0.84               
## 13 7.89 4.13 4.12 4.14 4.33 3.77 4.19 4.07 6.77 3.73 3.93 4.23          
## 14 8.00 0.62 0.52 0.49 0.73 0.63 0.72 0.75 7.23 0.90 0.85 0.17 4.18     
## 15 7.87 0.77 0.66 0.65 0.75 0.76 0.85 0.86 7.19 0.99 0.94 0.53 4.16 0.58
x <- dist(scale(social_media_cleaned[, 1:8],
                center = FALSE))

Y<- as.dist(round(as.matrix(x), 2)[1:21, 1:21])
X <- social_media_cleaned[,0:8]
cm <- colMeans(X)
cm
## Instagram_Time  Linkedin_Time  Snapchat_Time   Twitter_Time  Whatsapp_Time 
##      0.7221258      1.1123264      0.5031250      0.2899306      0.9077851 
##   Youtube_Time       OTT_Time    Reddit_Time 
##      0.5644097      1.4446047      0.1550926

In the case of this Q-Q plot, it seems to assess normality of the “WhatsApp_Time” data:

If the data points fall along the line (or very close to it), this would indicate that the data are normally distributed.

The plotted points in the middle section of the graph seem to follow the line fairly closely, suggesting that the data in this section follow a normal distribution.

However, towards the ends (especially in the upper right corner), the data points deviate from the line, indicating that the distribution of “WhatsApp_Time” has heavier tails than a normal distribution. This means there are more extreme values (either very high or very low) than what would be expected in a normal distribution.

Overall, the Q-Q plot suggests that while the “WhatsApp_Time” data may approximate a normal distribution in its central values, the presence of outliers or a heavy-tailed nature deviates from normality.

This could influence statistical tests or models that assume normality of the data, and alternative methods or transformations might be needed to address this non-normality.

library(reshape2)
## Warning: package 'reshape2' was built under R version 4.3.2
## 
## Attaching package: 'reshape2'
## The following object is masked from 'package:tidyr':
## 
##     smiths
S <- cov(X)

S
##                Instagram_Time Linkedin_Time Snapchat_Time Twitter_Time
## Instagram_Time      1.6168084     0.5661074    0.10264178  0.666490227
## Linkedin_Time       0.5661074     4.9493170    1.67261546  0.701654656
## Snapchat_Time       0.1026418     1.6726155    0.65871902  0.109631619
## Twitter_Time        0.6664902     0.7016547    0.10963162  1.175550070
## Whatsapp_Time       0.8370519     2.7374581    0.96572891 -0.008942606
## Youtube_Time        0.2954533     1.9953762    0.69637878  0.462393256
## OTT_Time            1.7724968     3.0042490    0.78359419  3.256575641
## Reddit_Time         0.3660933     0.3431741    0.05912061  0.580033918
##                Whatsapp_Time Youtube_Time  OTT_Time Reddit_Time
## Instagram_Time   0.837051920    0.2954533 1.7724968  0.36609334
## Linkedin_Time    2.737458129    1.9953762 3.0042490  0.34317411
## Snapchat_Time    0.965728913    0.6963788 0.7835942  0.05912061
## Twitter_Time    -0.008942606    0.4623933 3.2565756  0.58003392
## Whatsapp_Time    2.150115817    1.0266832 0.5443771  0.01488432
## Youtube_Time     1.026683221    0.8905814 1.7251716  0.22943824
## OTT_Time         0.544377134    1.7251716 9.6298237  1.62468013
## Reddit_Time      0.014884323    0.2294382 1.6246801  0.29510513
d <- apply(X, MARGIN = 1, function(X)t(X - cm) %*% solve(S) %*% (X - cm))
d
##  [1] 18.993139  1.912938  5.748851  6.234318  7.638747  4.264874  1.263877
##  [8]  6.635279 18.770744  5.390550  4.904444  5.095947 18.462435  8.822264
## [15] 12.424399  4.497667  8.831815  9.525171  2.035148  0.872693  7.674700
qqnorm(social_media_cleaned$Whatsapp_Time, main = "Whatsapp_Time")
qqline(social_media_cleaned$Whatsapp_Time)

with(data=social_media_cleaned,t.test(Whatsapp_Time[Morning_tireness=="Yes"],Whatsapp_Time[Morning_tireness=="No"],var.equal=TRUE))
## 
##  Two Sample t-test
## 
## data:  Whatsapp_Time[Morning_tireness == "Yes"] and Whatsapp_Time[Morning_tireness == "No"]
## t = 0.09394, df = 19, p-value = 0.9261
## alternative hypothesis: true difference in means is not equal to 0
## 95 percent confidence interval:
##  -1.391861  1.522673
## sample estimates:
## mean of x mean of y 
## 0.9513889 0.8859832
with(data=social_media_cleaned,t.test(Instagram_Time[Morning_tireness=="Yes"],Instagram_Time[Morning_tireness=="No"],var.equal=TRUE))
## 
##  Two Sample t-test
## 
## data:  Instagram_Time[Morning_tireness == "Yes"] and Instagram_Time[Morning_tireness == "No"]
## t = 0.74068, df = 19, p-value = 0.4679
## alternative hypothesis: true difference in means is not equal to 0
## 95 percent confidence interval:
##  -0.8051403  1.6870848
## sample estimates:
## mean of x mean of y 
##  1.016107  0.575135
var.test(social_media_cleaned$Instagram_Time[social_media_cleaned$Morning_tireness=="Yes"],social_media_cleaned$Instagram_Time[social_media_cleaned$Morning_tireness=="No"])
## 
##  F test to compare two variances
## 
## data:  social_media_cleaned$Instagram_Time[social_media_cleaned$Morning_tireness == "Yes"] and social_media_cleaned$Instagram_Time[social_media_cleaned$Morning_tireness == "No"]
## F = 4.8243, num df = 6, denom df = 13, p-value = 0.01687
## alternative hypothesis: true ratio of variances is not equal to 1
## 95 percent confidence interval:
##   1.33851 25.70896
## sample estimates:
## ratio of variances 
##           4.824333
matstand <- scale(social_media_cleaned[,1:8]) # Scaling data again to improve score of f and p value
matstand
##       Instagram_Time Linkedin_Time Snapchat_Time Twitter_Time Whatsapp_Time
##  [1,]     2.18465722     1.2980023     0.6122052    4.3441693    0.06288835
##  [2,]    -0.31450386    -0.4025969    -0.4308111   -0.2674074   -0.50021542
##  [3,]    -0.44448645    -0.3688846     0.0000000   -0.2674074   -0.33966691
##  [4,]    -0.39151036    -0.4004118     0.0000000   -0.2674074   -0.46848459
##  [5,]    -0.56791530     0.0000000    -0.6199059    0.0000000   -0.53384062
##  [6,]     0.00000000    -0.3688846     0.0000000   -0.2674074   -0.27809963
##  [7,]    -0.39205650    -0.4250718    -0.6199059   -0.2674074   -0.44859362
##  [8,]    -0.33853426    -0.4250718    -0.4658920   -0.2674074   -0.33493096
##  [9,]    -0.28446587     3.9949878     4.1031869   -0.2674074    3.57506461
## [10,]     0.00000000    -0.4999880    -0.6199059   -0.2674074    0.00000000
## [11,]    -0.41772533     0.0000000     0.0000000   -0.1745354    0.00000000
## [12,]    -0.45868623    -0.4531654     0.0000000   -0.1585229   -0.51489684
## [13,]     3.60053901     0.1836229     0.1450298   -0.2674074    2.12302410
## [14,]    -0.37130298    -0.4438008     0.0000000    0.0000000   -0.52200076
## [15,]    -0.41554075    -0.4297540     0.0000000   -0.2674074   -0.43438579
## [16,]    -0.33853426    -0.4063427     0.0000000   -0.2674074   -0.47700929
## [17,]    -0.24678184     0.0000000    -0.6199059    0.0000000   -0.23973848
## [18,]    -0.34508800     0.0000000     0.0000000   -0.2674074   -0.42159874
## [19,]    -0.38222588    -0.4266325    -0.6199059   -0.2674074   -0.36571460
## [20,]    -0.07583835    -0.4260082    -0.2442832   -0.2674074   -0.18290715
## [21,]     0.00000000     0.0000000    -0.6199059   -0.2674074    0.30110635
##       Youtube_Time   OTT_Time Reddit_Time
##  [1,]   2.05105173  4.2070808   4.3165554
##  [2,]  -0.41043111 -0.4655216  -0.2854977
##  [3,]   0.00000000  0.0000000  -0.2854977
##  [4,]   0.00000000  0.0000000  -0.2854977
##  [5,]  -0.44354523  0.0000000   0.0000000
##  [6,]  -0.28901267 -0.4252406  -0.2854977
##  [7,]  -0.46562131 -0.4655216  -0.2854977
##  [8,]   0.00000000 -0.4252406  -0.2854977
##  [9,]   3.64052944  0.5012237  -0.2854977
## [10,]  -0.46562131 -0.4655216  -0.2854977
## [11,]   0.00000000 -0.4655216  -0.2854977
## [12,]  -0.48769739  0.0000000  -0.2854977
## [13,]  -0.02409972 -0.3010406   0.0000000
## [14,]  -0.48769739  0.0000000  -0.2854977
## [15,]  -0.45973435  0.0000000   0.2514085
## [16,]  -0.37731699  0.0000000   0.0000000
## [17,]  -0.44207349  0.0000000  -0.2854977
## [18,]   0.00000000 -0.4324016  -0.2854977
## [19,]  -0.37069416 -0.4655216  -0.2854977
## [20,]  -0.36995830 -0.3312514  -0.2854977
## [21,]  -0.59807778 -0.4655216  -0.2854977
## attr(,"scaled:center")
## Instagram_Time  Linkedin_Time  Snapchat_Time   Twitter_Time  Whatsapp_Time 
##      0.7221258      1.1123264      0.5031250      0.2899306      0.9077851 
##   Youtube_Time       OTT_Time    Reddit_Time 
##      0.5644097      1.4446047      0.1550926 
## attr(,"scaled:scale")
## Instagram_Time  Linkedin_Time  Snapchat_Time   Twitter_Time  Whatsapp_Time 
##      1.2715378      2.2247061      0.8116151      1.0842279      1.4663273 
##   Youtube_Time       OTT_Time    Reddit_Time 
##      0.9437062      3.1031957      0.5432358
attach(social_media_cleaned)
matsurv <- matstand[Morning_tireness == "Yes",]
matsurv
##      Instagram_Time Linkedin_Time Snapchat_Time Twitter_Time Whatsapp_Time
## [1,]    -0.31450386    -0.4025969    -0.4308111   -0.2674074    -0.5002154
## [2,]    -0.56791530     0.0000000    -0.6199059    0.0000000    -0.5338406
## [3,]    -0.33853426    -0.4250718    -0.4658920   -0.2674074    -0.3349310
## [4,]    -0.41772533     0.0000000     0.0000000   -0.1745354     0.0000000
## [5,]     3.60053901     0.1836229     0.1450298   -0.2674074     2.1230241
## [6,]    -0.33853426    -0.4063427     0.0000000   -0.2674074    -0.4770093
## [7,]    -0.07583835    -0.4260082    -0.2442832   -0.2674074    -0.1829072
##      Youtube_Time   OTT_Time Reddit_Time
## [1,]  -0.41043111 -0.4655216  -0.2854977
## [2,]  -0.44354523  0.0000000   0.0000000
## [3,]   0.00000000 -0.4252406  -0.2854977
## [4,]   0.00000000 -0.4655216  -0.2854977
## [5,]  -0.02409972 -0.3010406   0.0000000
## [6,]  -0.37731699  0.0000000   0.0000000
## [7,]  -0.36995830 -0.3312514  -0.2854977
var.test(Instagram_Time[Morning_tireness=="Yes"],Instagram_Time[Morning_tireness=="No"])
## 
##  F test to compare two variances
## 
## data:  Instagram_Time[Morning_tireness == "Yes"] and Instagram_Time[Morning_tireness == "No"]
## F = 4.8304, num df = 6, denom df = 13, p-value = 0.01678
## alternative hypothesis: true ratio of variances is not equal to 1
## 95 percent confidence interval:
##   1.340194 25.741304
## sample estimates:
## ratio of variances 
##           4.830401
# Load the caret package
library(caret)

# Specify the column names for one-hot encoding, excluding Morning_tireness
columns <- setdiff(names(social_media_cleaned), "Morning_tireness")
social_media_cleaned
## # A tibble: 21 × 16
##    Instagram_Time Linkedin_Time Snapchat_Time Twitter_Time Whatsapp_Time
##             <dbl>         <dbl>         <dbl>        <dbl>         <dbl>
##  1          3.5           4             1            5             1    
##  2          0.322         0.217         0.153        0             0.174
##  3          0.157         0.292         0.503        0             0.410
##  4          0.224         0.222         0.503        0             0.221
##  5          0             1.11          0            0.290         0.125
##  6          0.722         0.292         0.503        0             0.5  
##  7          0.224         0.167         0            0             0.25 
##  8          0.292         0.167         0.125        0             0.417
##  9          0.360        10             3.83         0             6.15 
## 10          0.722         0             0            0             0.908
## # ℹ 11 more rows
## # ℹ 11 more variables: Youtube_Time <dbl>, OTT_Time <dbl>, Reddit_Time <dbl>,
## #   `Application Type` <chr>, Interview_call_received <chr>, Networking <chr>,
## #   Learning <dbl>, Mood_Productivity <chr>, Morning_tireness <chr>,
## #   Morning_tireness <chr>, Weekly_Feelings <dbl>
# Create a formula for one-hot encoding excluding Morning_tireness
formula_str <- paste("Morning_tireness ~ .", collapse = " + ")
# Find columns with "_Time"
time_columns <- grep("_Time$", names(social_media_cleaned), value = TRUE)
time_columns
## [1] "Instagram_Time" "Linkedin_Time"  "Snapchat_Time"  "Twitter_Time"  
## [5] "Whatsapp_Time"  "Youtube_Time"   "OTT_Time"       "Reddit_Time"
# Define additional columns to keep
additional_columns <- c("Morning_tireness", "Application Type")

# Combine time columns and additional columns to keep
columns_to_keep <- c(time_columns, additional_columns)

# Select columns to keep from the dataframe
social_media_subset <- social_media_cleaned[columns_to_keep]
# Convert the formula string to a formula object
formula <- as.formula(formula_str)

# Create dummy variables
dummy <- dummyVars(formula, data = social_media_subset)

# Apply one-hot encoding
social_media_subset_encoded <- predict(dummy, newdata = social_media_subset)

# Convert the result to a data frame
social_media_subset_encoded <- as.data.frame(social_media_subset_encoded)

# Convert Morning_tireness back to a categorical variable
social_media_subset_encoded$Morning_tireness <- as.factor(social_media_subset$Morning_tireness)


social_media_subset_encoded1 <- social_media_subset_encoded
df_pca <- prcomp(social_media_subset_encoded1[1:14],scale=TRUE)
df_pca
## Standard deviations (1, .., p=14):
##  [1] 2.183260687423295820508 1.734450522218009993480 1.159202187199944722451
##  [4] 1.082488473423110386662 1.052279105040528017767 1.022733418887082468274
##  [7] 0.944959148152234806872 0.751916647146853911465 0.240264482737287815572
## [10] 0.146299739088407515508 0.099520821057937858267 0.076176468494177931867
## [13] 0.055532606470670646537 0.000000000000000226817
## 
## Rotation (n x k) = (14 x 14):
##                                           PC1         PC2         PC3
## Instagram_Time                    -0.24520615 -0.07583818  0.40421465
## Linkedin_Time                     -0.37242068  0.27971182 -0.22765530
## Snapchat_Time                     -0.32562357  0.35432907 -0.19372867
## Twitter_Time                      -0.34301360 -0.35885609  0.04021495
## Whatsapp_Time                     -0.27958109  0.39373155 -0.04678829
## Youtube_Time                      -0.40575592  0.20285847 -0.19853690
## OTT_Time                          -0.38591477 -0.28417903  0.01857291
## Reddit_Time                       -0.34681369 -0.34930837  0.08495405
## `Application Type`Learning         0.02801573  0.02279758 -0.34636743
## `Application Type`Netflix          0.03624583 -0.05573178 -0.14290802
## `Application Type`No Social Media  0.10708126 -0.07740912 -0.20901037
## `Application Type`OTT             -0.20110094 -0.34188882 -0.01249310
## `Application Type`Social media     0.10190084 -0.07611725 -0.36195806
## `Application Type`Social Media    -0.03292314  0.36115537  0.61742952
##                                            PC4         PC5         PC6
## Instagram_Time                     0.009240210 -0.19814341 -0.02278635
## Linkedin_Time                     -0.016227384 -0.03298336  0.04274609
## Snapchat_Time                      0.065073928  0.09478048  0.07524451
## Twitter_Time                      -0.003182901 -0.04389821 -0.04319536
## Whatsapp_Time                      0.039276184 -0.12652114  0.04677916
## Youtube_Time                      -0.011807918 -0.02956151  0.03089133
## OTT_Time                          -0.005246472  0.02604819  0.04112079
## Reddit_Time                       -0.002969128  0.05504351  0.01357891
## `Application Type`Learning         0.064180984  0.23698653 -0.80128514
## `Application Type`Netflix          0.048415276  0.74909466  0.48215819
## `Application Type`No Social Media  0.732652545 -0.40049100  0.21250817
## `Application Type`OTT             -0.011928360  0.06741237 -0.12083580
## `Application Type`Social media    -0.665413221 -0.37448620  0.21197573
## `Application Type`Social Media    -0.086764781  0.07528819 -0.07667457
##                                           PC7         PC8          PC9
## Instagram_Time                    -0.63327600 -0.35067621  0.250991501
## Linkedin_Time                      0.09619998 -0.03724320 -0.556661429
## Snapchat_Time                      0.13910679  0.01966712  0.659436940
## Twitter_Time                      -0.04078710  0.26634477 -0.153444229
## Whatsapp_Time                     -0.26456768 -0.33850369 -0.292699841
## Youtube_Time                       0.08948456  0.16251703  0.148968118
## OTT_Time                           0.04110124  0.23992632  0.155497296
## Reddit_Time                       -0.10626831  0.23416533 -0.151144682
## `Application Type`Learning        -0.31816613  0.08861625  0.019480400
## `Application Type`Netflix         -0.31367980 -0.05333975 -0.050699206
## `Application Type`No Social Media -0.08635071  0.11985444  0.005745479
## `Application Type`OTT              0.46494122 -0.65385912  0.032425109
## `Application Type`Social media    -0.18913941  0.07969642  0.074285346
## `Application Type`Social Media     0.13668127  0.30326870 -0.065480400
##                                            PC10         PC11         PC12
## Instagram_Time                    -0.0827467934  0.241872389  0.264769354
## Linkedin_Time                      0.1760702486  0.454248408  0.321186317
## Snapchat_Time                      0.2697463894  0.315447458 -0.290715854
## Twitter_Time                       0.0792109075  0.244152601 -0.051411644
## Whatsapp_Time                      0.1603742378 -0.501485937 -0.385904932
## Youtube_Time                      -0.7470752972 -0.244048818  0.269953059
## OTT_Time                           0.4932001012 -0.508146260  0.367515057
## Reddit_Time                       -0.2166444563  0.075067607 -0.612004258
## `Application Type`Learning         0.0343086406 -0.016599701  0.020568152
## `Application Type`Netflix         -0.0333799963  0.001811408  0.074691966
## `Application Type`No Social Media  0.0004435022  0.016598013  0.008627537
## `Application Type`OTT             -0.0691937879 -0.009752832 -0.016775783
## `Application Type`Social media     0.0404329452  0.018872241 -0.042156949
## `Application Type`Social Media     0.0194445424 -0.011713138 -0.005372764
##                                          PC13                       PC14
## Instagram_Time                    -0.09168696  0.00000000000000014170944
## Linkedin_Time                     -0.25892528 -0.00000000000000011368316
## Snapchat_Time                      0.02508425 -0.00000000000000024180640
## Twitter_Time                       0.76385040  0.00000000000000032996488
## Whatsapp_Time                      0.22022163  0.00000000000000001424014
## Youtube_Time                       0.07522857  0.00000000000000045784823
## OTT_Time                          -0.21819836 -0.00000000000000010855357
## Reddit_Time                       -0.48080505 -0.00000000000000035321103
## `Application Type`Learning        -0.03074158  0.25318484177091638009927
## `Application Type`Netflix          0.06770984  0.25318484177091676867732
## `Application Type`No Social Media -0.03524196  0.41602514716892180501873
## `Application Type`OTT              0.01521968  0.41602514716892174950758
## `Application Type`Social media    -0.01927969  0.41602514716892174950758
## `Application Type`Social Media     0.01177357  0.59377108599535444177775
summary(df_pca)
## Importance of components:
##                           PC1    PC2     PC3    PC4     PC5     PC6     PC7
## Standard deviation     2.1833 1.7345 1.15920 1.0825 1.05228 1.02273 0.94496
## Proportion of Variance 0.3405 0.2149 0.09598 0.0837 0.07909 0.07471 0.06378
## Cumulative Proportion  0.3405 0.5554 0.65134 0.7350 0.81413 0.88884 0.95262
##                            PC8     PC9    PC10    PC11    PC12    PC13
## Standard deviation     0.75192 0.24026 0.14630 0.09952 0.07618 0.05553
## Proportion of Variance 0.04038 0.00412 0.00153 0.00071 0.00041 0.00022
## Cumulative Proportion  0.99301 0.99713 0.99866 0.99937 0.99978 1.00000
##                                         PC14
## Standard deviation     0.0000000000000002268
## Proportion of Variance 0.0000000000000000000
## Cumulative Proportion  1.0000000000000000000
# variable means stored in df_pca$center
df_pca$center
##                    Instagram_Time                     Linkedin_Time 
##                        0.72212577                        1.11232639 
##                     Snapchat_Time                      Twitter_Time 
##                        0.50312500                        0.28993056 
##                     Whatsapp_Time                      Youtube_Time 
##                        0.90778509                        0.56440972 
##                          OTT_Time                       Reddit_Time 
##                        1.44460470                        0.15509259 
##        `Application Type`Learning         `Application Type`Netflix 
##                        0.04761905                        0.04761905 
## `Application Type`No Social Media             `Application Type`OTT 
##                        0.14285714                        0.14285714 
##    `Application Type`Social media    `Application Type`Social Media 
##                        0.14285714                        0.47619048
# variable standard deviations stored in df_pca$scale
df_pca$scale
##                    Instagram_Time                     Linkedin_Time 
##                         1.2715378                         2.2247061 
##                     Snapchat_Time                      Twitter_Time 
##                         0.8116151                         1.0842279 
##                     Whatsapp_Time                      Youtube_Time 
##                         1.4663273                         0.9437062 
##                          OTT_Time                       Reddit_Time 
##                         3.1031957                         0.5432358 
##        `Application Type`Learning         `Application Type`Netflix 
##                         0.2182179                         0.2182179 
## `Application Type`No Social Media             `Application Type`OTT 
##                         0.3585686                         0.3585686 
##    `Application Type`Social media    `Application Type`Social Media 
##                         0.3585686                         0.5117663
# singular values (square roots of eigenvalues) stored in df$sdev
# A table containing eigenvalues and %'s accounted, follows
# Eigenvalues are sdev^2

(eigen_df <- df_pca$sdev^2)
##  [1] 4.76662722924804249657881882740184664726
##  [2] 3.00831861402232769719944371900055557489
##  [3] 1.34374971080913563348246952955378219485
##  [4] 1.17178129509389594709034554398385807872
##  [5] 1.10729131490489463018889182421844452620
##  [6] 1.04598364610846039646219196583842858672
##  [7] 0.89294779167659721341721024145954288542
##  [8] 0.56537864425656636502282026413013227284
##  [9] 0.05772702166501647580432177164766471833
## [10] 0.02140361365733611451189766228253574809
## [11] 0.00990439382404608749388419397519101040
## [12] 0.00580285435224448323254797799108928302
## [13] 0.00308387038142637123078193539527092071
## [14] 0.00000000000000000000000000000005144594
names(eigen_df) <- paste("PC",1:11,sep="") #formatting PC with column no. for respective PC's
eigen_df
##                                      PC1 
## 4.76662722924804249657881882740184664726 
##                                      PC2 
## 3.00831861402232769719944371900055557489 
##                                      PC3 
## 1.34374971080913563348246952955378219485 
##                                      PC4 
## 1.17178129509389594709034554398385807872 
##                                      PC5 
## 1.10729131490489463018889182421844452620 
##                                      PC6 
## 1.04598364610846039646219196583842858672 
##                                      PC7 
## 0.89294779167659721341721024145954288542 
##                                      PC8 
## 0.56537864425656636502282026413013227284 
##                                      PC9 
## 0.05772702166501647580432177164766471833 
##                                     PC10 
## 0.02140361365733611451189766228253574809 
##                                     PC11 
## 0.00990439382404608749388419397519101040 
##                                     <NA> 
## 0.00580285435224448323254797799108928302 
##                                     <NA> 
## 0.00308387038142637123078193539527092071 
##                                     <NA> 
## 0.00000000000000000000000000000005144594
sumlambdas <- sum(eigen_df)
sumlambdas
## [1] 14
propvar <- eigen_df/sumlambdas
propvar
##                                      PC1 
## 0.34047337351771755908913519306224770844 
##                                      PC2 
## 0.21487990100159498618737075048557016999 
##                                      PC3 
## 0.09598212220065262256785132422010065056 
##                                      PC4 
## 0.08369866393527834735888148998128599487 
##                                      PC5 
## 0.07909223677892110448972573522041784599 
##                                      PC6 
## 0.07471311757917580009813462993406574242 
##                                      PC7 
## 0.06378198511975699536158401770080672577 
##                                      PC8 
## 0.04038418887546905977625755213011871092 
##                                      PC9 
## 0.00412335869035832316975564992844738299 
##                                     PC10 
## 0.00152882954695258087805809221748631899 
##                                     PC11 
## 0.00070745670171757822023567152669443203 
##                                     <NA> 
## 0.00041448959658889198472836445930056470 
##                                     <NA> 
## 0.00022027645581616954787405882054684980 
##                                     <NA> 
## 0.00000000000000000000000000000000367471

****3) Application of different MVA models (10 points)*****

[1] PCA

[2] Clustering Analysis

[3] Factor Analysis

[4] Logistic Regression

[5] Linear Discriminant Analysis

*********4) Model Insights (10 points)**************

PCA Analysis:

A large proportion of the variability in the dataset can be captured by a reduced number of components (in this case, the first six principal components).

This suggests that dimensionality reduction using PCA could be very effective for this dataset, potentially reducing the complexity of the data without losing a significant amount of information.

Decisions on how many components to keep for further analysis might involve a trade-off between a desire for simplicity (fewer components) and the need to retain as much information as possible. In practice, a decision might be made to keep enough components to explain, for example, over 80-90% of the variance.

If this is for a machine learning task, the analysis could proceed with these reduced dimensions to simplify the model and potentially improve generalizability.

library(waterfall)
## Warning: package 'waterfall' was built under R version 4.3.2
cumvar_df <- cumsum(propvar)
cumvar_df
##       PC1       PC2       PC3       PC4       PC5       PC6       PC7       PC8 
## 0.3404734 0.5553533 0.6513354 0.7350341 0.8141263 0.8888394 0.9526214 0.9930056 
##       PC9      PC10      PC11      <NA>      <NA>      <NA> 
## 0.9971289 0.9986578 0.9993652 0.9997797 1.0000000 1.0000000
# Load the waterfall package
library(waterfall)

# Create a data frame for the waterfall chart
waterfall_data <- data.frame(
  labels = paste("PC", 1:length(propvar)),
  values = propvar
)

# Calculate the cumulative sum of the proportion of variance
cumulative_propvar <- cumsum(waterfall_data$values)

# Plot the waterfall chart with rotated x-axis labels
barplot(cumulative_propvar, names.arg = waterfall_data$labels, 
        main = "Waterfall Chart of Cumulative Proportion of Variance",
        xlab = "Principal Component", ylab = "Cumulative Proportion of Variance",
        las = 2, cex.names = 0.8)  # las = 2 for vertical labels, cex.names to adjust label size

#Based on the cumulative plot we can select PC1 to PC5 as they indicate high contribution to the total
# Identifying the scores by their Quality of wine 
dftyp_pca <- cbind(data.frame(Morning_tireness),df_pca$x)
dftyp_pca
##    Morning_tireness        PC1        PC2        PC3          PC4         PC5
## 1                No -7.2263481 -4.4921289  0.4082422 -0.030642608 -0.14509809
## 2               Yes  0.9932513  0.3805797  1.0804071 -0.170480135  0.23786202
## 3                No  0.4812135  0.5666969  0.8563796 -0.145176644  0.28301800
## 4                No  0.5159799  0.5031411  0.8909978 -0.149234996  0.28985917
## 5               Yes  0.1229629 -1.5617146 -0.2665533 -0.060457529  0.31909734
## 6                No  0.6363849  0.6194446  1.0826486 -0.133007718  0.18462328
## 7                No  1.4386930 -0.5956824 -1.1165696 -1.866666952 -0.96035888
## 8               Yes  1.1391669 -0.4174091 -1.2217850 -1.857395222 -0.98346240
## 9                No -5.2843961  5.3664946 -1.7639352  0.160637226 -0.09358203
## 10               No  1.2594879 -0.4733476 -0.5354778  2.054809609 -1.16485180
## 11              Yes  0.5828187  0.2993181 -2.0313080  0.328226225  1.14526479
## 12               No  0.2291002 -1.3219875 -0.2620790 -0.009137201  0.36130871
## 13              Yes -1.4252236  1.4164336  2.2457831 -0.009586460 -0.82595152
## 14               No  1.0112754 -0.6480805 -0.7702424  2.067271631 -0.96729479
## 15               No  0.7540317 -0.7317236 -0.8380990  0.247599249  3.62008646
## 16              Yes  0.5616660  0.3178395  1.0133261 -0.145376413  0.30750534
## 17               No  0.9054426 -0.6290447 -1.1496645 -1.867590882 -1.02989780
## 18               No  0.5092370  0.7529604  0.8083819 -0.151193600  0.25025863
## 19               No  1.3896226 -0.5485785 -0.7084142  2.034602627 -1.04807133
## 20              Yes  0.7257577  0.5170113  1.1256853 -0.144476492  0.17117827
## 21               No  0.6798757  0.6797775  1.1522763 -0.152723714  0.04850663
##            PC6          PC7         PC8          PC9         PC10
## 1  -0.15495209 -0.237664629  0.75444805 -0.034828407 -0.025403389
## 2  -0.21982226  0.420534094  0.45337399 -0.146864676 -0.092613625
## 3  -0.14367148  0.579405639  0.63021973  0.172373182 -0.010992294
## 4  -0.15225227  0.576905221  0.65642171  0.240924659 -0.041585947
## 5  -0.38936567  1.606840845 -1.63682394 -0.347783049 -0.074462662
## 6  -0.17733386  0.238294238  0.30451227  0.156737341 -0.031712780
## 7   0.50846122 -0.371978389  0.08091498  0.033275513 -0.016884028
## 8   0.54018744 -0.371198310  0.11203567  0.190628876 -0.289527121
## 9   0.66416233  0.779314716 -0.12096865 -0.036448964  0.006210529
## 10  0.51879504 -0.459484698 -0.09363503 -0.149070481 -0.102098339
## 11 -3.65790423 -1.239939129  0.21866189  0.004907919  0.003204874
## 12 -0.36208817  1.608149531 -1.76872233  0.396034865  0.089245271
## 13 -0.09535676 -2.605303574 -1.64891981  0.161336757 -0.006672084
## 14  0.55879313  0.011646702  0.40269617  0.316103395  0.289289987
## 15  2.20107476 -1.222455231 -0.13161662 -0.012773228 -0.003118127
## 16 -0.16189077  0.480938131  0.64648401  0.160658208  0.171651757
## 17  0.54141044 -0.468007859  0.13018172 -0.193151599  0.312617334
## 18 -0.15178144  0.555849945  0.50561431 -0.051278311 -0.180667889
## 19  0.51646484 -0.105122645  0.17689352 -0.164654389 -0.187123573
## 20 -0.19061114  0.218278938  0.30560251 -0.016894328  0.020704672
## 21 -0.19231906  0.004996464  0.02262586 -0.679233285  0.169937434
##              PC11          PC12          PC13                      PC14
## 1   0.00258982449 -0.0146852962  0.0110909670  0.0000000000000003330669
## 2   0.08699461404  0.0060453747  0.0354647822  0.0000000000000002220446
## 3  -0.21046366966  0.0771411636  0.0141164401  0.0000000000000002220446
## 4  -0.14737116582  0.1307528652 -0.0109460124  0.0000000000000002220446
## 5   0.01973001220  0.0735937094 -0.0753283018 -0.0000000000000001110223
## 6   0.15278781157 -0.0632337255  0.0579660587  0.0000000000000002220446
## 7   0.06147944258 -0.1086254510 -0.0259065404 -0.0000000000000001110223
## 8  -0.06809493535 -0.0425918743  0.0243192340  0.0000000000000001110223
## 9  -0.00148179349 -0.0154705480 -0.0009326796  0.0000000000000004440892
## 10 -0.10902942160 -0.0603663111  0.0118180955  0.0000000000000001110223
## 11 -0.00071754398  0.0005209035 -0.0004137545 -0.0000000000000007771561
## 12 -0.02301256174 -0.0596065278  0.0645739268 -0.0000000000000003330669
## 13  0.00992211148  0.0412021268 -0.0272371622  0.0000000000000006661338
## 14  0.11813216112  0.0319756272  0.0329299122 -0.0000000000000001110223
## 15  0.00007830051  0.0018916288  0.0009113144  0.0000000000000003330669
## 16 -0.01946138513 -0.1304195868 -0.1817986736  0.0000000000000000000000
## 17  0.00795595202  0.1494629881  0.0011609248  0.0000000000000000000000
## 18  0.24195423766  0.0946432879 -0.0142044749  0.0000000000000002220446
## 19 -0.00792381435  0.0287497139 -0.0455274041  0.0000000000000001110223
## 20 -0.04430544993 -0.0546880910  0.0679482883  0.0000000000000002220446
## 21 -0.06976272662 -0.0862919774  0.0599950595  0.0000000000000002220446

PC1: Those who reported “Yes” for morning tiredness have a higher loading on PC1 than those who reported “No”. This suggests that PC1 captures some variability in the data that is more strongly associated with those feeling tired in the morning.

PC2: Similarly, those who feel tired in the morning (“Yes”) also have a positive and higher loading on PC2 compared to those who do not feel tired (“No”), although the values are smaller than those for PC1.

PC3, PC4, and PC5: The pattern continues with higher loadings for the “Yes” group across these components. However, the sign of the loading for PC4 is reversed between the groups, with the “No” group having a positive loading and the “Yes” group a negative one. This indicates that PC4 captures a dimension of the data where the difference between those who feel tired and those who don’t is contrasted.

# Group by Morning_tireness and calculate the mean for all attributes
tabmeansPC <- aggregate(dftyp_pca[, 2:ncol(dftyp_pca)], 
                        by = list(Morning_tireness = social_media_subset_encoded1$Morning_tireness), 
                        mean)

# Print the result
print(tabmeansPC)
##   Morning_tireness        PC1         PC2        PC3     PC4        PC5
## 1               No -0.2161698 -0.04230035 -0.1867757  0.3031  0.1317432
## 2              Yes  0.4323397  0.08460071  0.3735514 -0.6062 -0.2634864
##            PC6         PC7        PC8         PC9        PC10        PC11
## 1 -0.004138211  0.04998963  0.1370049  0.03802823  0.01618747 -0.01255477
## 2  0.008276422 -0.09997927 -0.2740098 -0.07605647 -0.03237494  0.02510954
##         PC12        PC13                      PC14
## 1  0.0113207  0.01715435 0.00000000000000008723181
## 2 -0.0226414 -0.03430869 0.00000000000000014274296
tabmeansPC <- tabmeansPC[rev(order(tabmeansPC$Morning_tireness)),]
tabmeansPC
##   Morning_tireness        PC1         PC2        PC3     PC4        PC5
## 2              Yes  0.4323397  0.08460071  0.3735514 -0.6062 -0.2634864
## 1               No -0.2161698 -0.04230035 -0.1867757  0.3031  0.1317432
##            PC6         PC7        PC8         PC9        PC10        PC11
## 2  0.008276422 -0.09997927 -0.2740098 -0.07605647 -0.03237494  0.02510954
## 1 -0.004138211  0.04998963  0.1370049  0.03802823  0.01618747 -0.01255477
##         PC12        PC13                      PC14
## 2 -0.0226414 -0.03430869 0.00000000000000014274296
## 1  0.0113207  0.01715435 0.00000000000000008723181
tabfmeans <- t(tabmeansPC[,-1])
tabfmeans
##                             2                          1
## PC1   0.432339691884109811326 -0.21616984594205487790752
## PC2   0.084600708272127206344 -0.04230035413606363092764
## PC3   0.373551357619659851750 -0.18677567880983000914163
## PC4  -0.606199984339521380505  0.30309999216976063474149
## PC5  -0.263486408912418090811  0.13174320445620901764983
## PC6   0.008276421591901518202 -0.00413821079595068190560
## PC7  -0.099979269619474495090  0.04998963480973732387280
## PC8  -0.274009846150696956268  0.13700492307534842262307
## PC9  -0.076056469986573990716  0.03802823499328694678567
## PC10 -0.032374941866109646638  0.01618747093305478515490
## PC11  0.025109536689231166939 -0.01255476834461559908218
## PC12 -0.022641395045706363964  0.01132069752285317677798
## PC13 -0.034308694212348160579  0.01715434710617408028965
## PC14  0.000000000000000142743  0.00000000000000008723181
colnames(tabfmeans) <- t(as.vector(tabmeansPC[1]$Morning_tireness))
tabfmeans
##                           Yes                         No
## PC1   0.432339691884109811326 -0.21616984594205487790752
## PC2   0.084600708272127206344 -0.04230035413606363092764
## PC3   0.373551357619659851750 -0.18677567880983000914163
## PC4  -0.606199984339521380505  0.30309999216976063474149
## PC5  -0.263486408912418090811  0.13174320445620901764983
## PC6   0.008276421591901518202 -0.00413821079595068190560
## PC7  -0.099979269619474495090  0.04998963480973732387280
## PC8  -0.274009846150696956268  0.13700492307534842262307
## PC9  -0.076056469986573990716  0.03802823499328694678567
## PC10 -0.032374941866109646638  0.01618747093305478515490
## PC11  0.025109536689231166939 -0.01255476834461559908218
## PC12 -0.022641395045706363964  0.01132069752285317677798
## PC13 -0.034308694212348160579  0.01715434710617408028965
## PC14  0.000000000000000142743  0.00000000000000008723181
# Standard deviations of scores for all the PC's classified by Quality status
tabsdsPC <- aggregate(dftyp_pca[,2:11],by=list(Morning_tireness=social_media_subset_encoded1$Morning_tireness),sd)

#Transpose the resulting subset by transposition on rows and columns of PC's and Quality
tabfsds <- t(tabsdsPC[,-1])

colnames(tabfsds) <- t(as.vector(tabsdsPC[1]$Morning_tireness))
tabfsds
##             No       Yes
## PC1  2.6051338 0.9257897
## PC2  2.0387958 1.0045125
## PC3  1.0927901 1.2835722
## PC4  1.0793169 0.8595618
## PC5  1.2111593 0.6254429
## PC6  1.2441298 0.3644144
## PC7  0.7665093 1.2984622
## PC8  0.6172807 0.9631336
## PC9  0.1881216 0.3249963
## PC10 0.1369221 0.1699741
t.test(PC1~social_media_subset_encoded1$Morning_tireness,data=dftyp_pca)
## 
##  Welch Two Sample t-test
## 
## data:  PC1 by social_media_subset_encoded1$Morning_tireness
## t = -0.83224, df = 17.919, p-value = 0.4162
## alternative hypothesis: true difference in means between group No and group Yes is not equal to 0
## 95 percent confidence interval:
##  -2.2861486  0.9891295
## sample estimates:
##  mean in group No mean in group Yes 
##        -0.2161698         0.4323397
t.test(PC2~social_media_subset_encoded1$Morning_tireness,data=dftyp_pca)
## 
##  Welch Two Sample t-test
## 
## data:  PC2 by social_media_subset_encoded1$Morning_tireness
## t = -0.19108, df = 18.989, p-value = 0.8505
## alternative hypothesis: true difference in means between group No and group Yes is not equal to 0
## 95 percent confidence interval:
##  -1.516974  1.263172
## sample estimates:
##  mean in group No mean in group Yes 
##       -0.04230035        0.08460071
t.test(PC3~social_media_subset_encoded1$Morning_tireness,data=dftyp_pca)
## 
##  Welch Two Sample t-test
## 
## data:  PC3 by social_media_subset_encoded1$Morning_tireness
## t = -0.9895, df = 10.5, p-value = 0.3447
## alternative hypothesis: true difference in means between group No and group Yes is not equal to 0
## 95 percent confidence interval:
##  -1.8139570  0.6933029
## sample estimates:
##  mean in group No mean in group Yes 
##        -0.1867757         0.3735514
t.test(PC4~social_media_subset_encoded1$Morning_tireness,data=dftyp_pca)
## 
##  Welch Two Sample t-test
## 
## data:  PC4 by social_media_subset_encoded1$Morning_tireness
## t = 2.0929, df = 14.912, p-value = 0.05387
## alternative hypothesis: true difference in means between group No and group Yes is not equal to 0
## 95 percent confidence interval:
##  -0.01721445  1.83581440
## sample estimates:
##  mean in group No mean in group Yes 
##            0.3031           -0.6062
t.test(PC5~social_media_subset_encoded1$Morning_tireness,data=dftyp_pca)
## 
##  Welch Two Sample t-test
## 
## data:  PC5 by social_media_subset_encoded1$Morning_tireness
## t = 0.98604, df = 18.91, p-value = 0.3366
## alternative hypothesis: true difference in means between group No and group Yes is not equal to 0
## 95 percent confidence interval:
##  -0.4439794  1.2344386
## sample estimates:
##  mean in group No mean in group Yes 
##         0.1317432        -0.2634864
# Levene's tests (one-sided)
library(car)

#leveneTest function takes the formula PC(1 to 5)~df$quality where PC1 represents the scores of PC1 to 5 and df$quality represents the quality groups. 

#eg: (p_PC1_1sided <- LTPC1[[3]][1]/2 : extracts the p-value from the result of the Levene's test for PC1 and divides it by 2 to get a one-sided p-value. 

(LTPC1 <- leveneTest(PC1~social_media_subset_encoded1$Morning_tireness,data=dftyp_pca))
## Levene's Test for Homogeneity of Variance (center = median)
##       Df F value Pr(>F)
## group  1  0.4498 0.5105
##       19
(p_PC1_1sided <- LTPC1[[3]][1]/2)
## [1] 0.2552571
(LTPC2 <- leveneTest(PC2~social_media_subset_encoded1$Morning_tireness,data=dftyp_pca))
## Levene's Test for Homogeneity of Variance (center = median)
##       Df F value Pr(>F)
## group  1  0.4989 0.4886
##       19
(p_PC2_1sided=LTPC2[[3]][1]/2)
## [1] 0.2442803
(LTPC3 <- leveneTest(PC3~social_media_subset_encoded1$Morning_tireness,data=dftyp_pca))
## Levene's Test for Homogeneity of Variance (center = median)
##       Df F value Pr(>F)
## group  1  0.0605 0.8084
##       19
(p_PC3_1sided <- LTPC3[[3]][1]/2)
## [1] 0.4041904
(LTPC4 <- leveneTest(PC4~social_media_subset_encoded1$Morning_tireness,data=dftyp_pca))
## Levene's Test for Homogeneity of Variance (center = median)
##       Df F value Pr(>F)
## group  1  0.1556 0.6976
##       19
(p_PC4_1sided <- LTPC4[[3]][1]/2)
## [1] 0.3487972
(LTPC5 <- leveneTest(PC5~social_media_subset_encoded1$Morning_tireness,data=dftyp_pca))
## Levene's Test for Homogeneity of Variance (center = median)
##       Df F value Pr(>F)
## group  1  0.3491 0.5616
##       19
(p_PC5_1sided <- LTPC5[[3]][1]/2)
## [1] 0.2807841
plot(log(eigen_df), xlab = "Component number",ylab = "log(Component variance)", type="l",main = "Log(eigenvalue) diagram")

print(summary(df_pca))
## Importance of components:
##                           PC1    PC2     PC3    PC4     PC5     PC6     PC7
## Standard deviation     2.1833 1.7345 1.15920 1.0825 1.05228 1.02273 0.94496
## Proportion of Variance 0.3405 0.2149 0.09598 0.0837 0.07909 0.07471 0.06378
## Cumulative Proportion  0.3405 0.5554 0.65134 0.7350 0.81413 0.88884 0.95262
##                            PC8     PC9    PC10    PC11    PC12    PC13
## Standard deviation     0.75192 0.24026 0.14630 0.09952 0.07618 0.05553
## Proportion of Variance 0.04038 0.00412 0.00153 0.00071 0.00041 0.00022
## Cumulative Proportion  0.99301 0.99713 0.99866 0.99937 0.99978 1.00000
##                                         PC14
## Standard deviation     0.0000000000000002268
## Proportion of Variance 0.0000000000000000000
## Cumulative Proportion  1.0000000000000000000
plot(df_pca, xlab = "Principal Component")

PCA Analysis for Bar Plot: Inference and Insights

Instagram_Time seems to have a strong positive correlation with the first dimension (Dim 1).

Linkedin_Time, Snapchat_Time, and Twitter_Time also appear to have a strong positive correlation with Dim 1, although slightly less strong than Instagram_Time.

Whatsapp_Time and Youtube_Time show moderate positive correlations with Dim 1.

OTT_Time and Reddit_Time have weaker positive correlations with Dim 1.

The “Application Type” variables show various degrees of correlation with Dim 1, with ‘Learning’ and ‘Netflix’ types showing some degree of positive correlation, though less than the time spent on specific social media platforms.

There is very little correlation between any types of application use and Dim 5.

There appears to be a difference in the scores of the first and second principal components between individuals who do and do not experience morning tiredness, potentially indicating that these components capture variance in the data related to this experience.

For PC3 and PC4, the similarity in distributions suggests that these components may not be as strongly related to the experience of morning tiredness.

The presence of outliers in the “Yes” group for PC1 and PC2 could indicate that there are other factors or patterns captured by these components that are more pronounced in individuals who experience morning tiredness.

It’s important to note that without more context on what each principal component represents (i.e., which original variables contribute most to each component), these inferences remain speculative. Principal component scores are the transformed values of the original data in the direction of maximum variance, and without knowing what these directions represent in terms of original variables, it’s challenging to draw definitive conclusions.

#The aboved two gives us the same thing. predict is a good function to know.
social_media_subset_encoded1$Morning_tireness <- as.factor(social_media_subset_encoded1$Morning_tireness)
out <- sapply(1:5, function(i){plot(social_media_subset_encoded1$Morning_tireness,df_pca$x[,i],xlab=paste("PC",i,sep=""),ylab="Morning_tireness")})

pairs(df_pca$x[,1:5], ylim = c(-6,4),xlim = c(-6,4),panel=function(x,y,...){text(x,y,social_media_subset_encoded1$Morning_tireness)})

************4) Model Insights (10 points)******************

Given the elbow at the second or third component, you might consider retaining only the first two or three principal components for further analysis, as they capture the majority of information in the data.

The subsequent components each add a relatively small amount to the total explained variance, and after the third component, the marginal gain continues to decrease, which suggests that they may not add significant value to the analysis.

This scree plot helps in dimensionality reduction decisions. Instead of working with all ten dimensions, one can achieve a simplified representation with just a few components without losing a substantial amount of information.

library(factoextra)
## Warning: package 'factoextra' was built under R version 4.3.2
## Welcome! Want to learn more? See two factoextra-related books at https://goo.gl/ve3WBa
fviz_eig(df_pca, addlabels = TRUE)

library(factoextra)

# Plot variables' contributions to both PC2 and PC3
plot_pc2_pc3 <- fviz_pca_var(df_pca, axes = c(1, 2), col.var = "cos2",
                              gradient.cols = c("#FFCC00", "#CC9933", "#660033", "#330033"),
                              repel = TRUE) +
  ggtitle("PC2 and PC3 - Variance Contributions")

# Display the plot
plot_pc2_pc3

library(FactoMineR)
library(corrplot)
## Warning: package 'corrplot' was built under R version 4.3.2
## corrplot 0.92 loaded
# Different PCA Method. 
res.pca <- PCA(social_media_subset_encoded1[, 1:14], graph = FALSE)
print(res.pca)
## **Results for the Principal Component Analysis (PCA)**
## The analysis was performed on 21 individuals, described by 14 variables
## *The results are available in the following objects:
## 
##    name               description                          
## 1  "$eig"             "eigenvalues"                        
## 2  "$var"             "results for the variables"          
## 3  "$var$coord"       "coord. for the variables"           
## 4  "$var$cor"         "correlations variables - dimensions"
## 5  "$var$cos2"        "cos2 for the variables"             
## 6  "$var$contrib"     "contributions of the variables"     
## 7  "$ind"             "results for the individuals"        
## 8  "$ind$coord"       "coord. for the individuals"         
## 9  "$ind$cos2"        "cos2 for the individuals"           
## 10 "$ind$contrib"     "contributions of the individuals"   
## 11 "$call"            "summary statistics"                 
## 12 "$call$centre"     "mean of the variables"              
## 13 "$call$ecart.type" "standard error of the variables"    
## 14 "$call$row.w"      "weights for the individuals"        
## 15 "$call$col.w"      "weights for the variables"
# Compute the cos2 values from the PCA results
cos2_matrix <- res.pca$var$cos2

# Plot the correlation matrix using corrplot
corrplot(cos2_matrix, is.corr = FALSE)

fviz_pca_var(res.pca, col.var = "cos2",
             gradient.cols = c("#00AFBB", "#E7B800", "#FC4E07"), 
             repel = TRUE,
             axes = c(1, 2) # Specify PC3 and PC4
             )

fviz_pca_ind(res.pca,
             geom.ind = "point", # show points only (not "text")
             col.ind = social_media_subset_encoded1$Morning_tireness, # color by groups
             palette = c("#00AFBB", "#E7B800", "#FC4E07"),
             addEllipses = TRUE, # Concentration ellipses
             axes = c(1, 2), # PC2 and PC3
             legend.title = "Groups"
             )

fviz_pca_biplot(res.pca, 
                # Individuals
                geom.ind = "point",
                fill.ind = social_media_subset_encoded1$Morning_tireness, col.ind = "black",
                pointshape = 21, pointsize = 2,
                palette = "jco",
                addEllipses = TRUE,
                # Variables
                alpha.var = "contrib", col.var = "contrib",
                gradient.cols = "RdYlBu",
                axes = c(1, 2),  # PC2 and PC3
                legend.title = list(fill = "Quality", color = "Contrib")
                )

# Find columns with "_Time"
time_columns <- grep("_Time$", names(social_media_cleaned), value = TRUE)
time_columns
## [1] "Instagram_Time" "Linkedin_Time"  "Snapchat_Time"  "Twitter_Time"  
## [5] "Whatsapp_Time"  "Youtube_Time"   "OTT_Time"       "Reddit_Time"
# Define additional columns to keep
additional_columns <- c("Weekly_Feelings", "Application Type")

# Combine time columns and additional columns to keep
columns_to_keep <- c(time_columns, additional_columns)

# Select columns to keep from the dataframe
social_media_subset <- social_media_cleaned[columns_to_keep]
social_media_subset
## # A tibble: 21 × 10
##    Instagram_Time Linkedin_Time Snapchat_Time Twitter_Time Whatsapp_Time
##             <dbl>         <dbl>         <dbl>        <dbl>         <dbl>
##  1          3.5           4             1            5             1    
##  2          0.322         0.217         0.153        0             0.174
##  3          0.157         0.292         0.503        0             0.410
##  4          0.224         0.222         0.503        0             0.221
##  5          0             1.11          0            0.290         0.125
##  6          0.722         0.292         0.503        0             0.5  
##  7          0.224         0.167         0            0             0.25 
##  8          0.292         0.167         0.125        0             0.417
##  9          0.360        10             3.83         0             6.15 
## 10          0.722         0             0            0             0.908
## # ℹ 11 more rows
## # ℹ 5 more variables: Youtube_Time <dbl>, OTT_Time <dbl>, Reddit_Time <dbl>,
## #   Weekly_Feelings <dbl>, `Application Type` <chr>
# Load the caret package
library(caret)

# Specify the column names for one-hot encoding, excluding Morning_tireness
columns <- setdiff(names(social_media_subset), "Morning_tireness")

# Create a formula for one-hot encoding excluding Morning_tireness
formula_str <- paste("Weekly_Feelings ~ .", collapse = " + ")

# Convert the formula string to a formula object
formula <- as.formula(formula_str)

# Create dummy variables
dummy <- dummyVars(formula, data = social_media_subset)

# Apply one-hot encoding
social_media_subset_encoded <- predict(dummy, newdata = social_media_subset)

# Convert the result to a data frame
social_media_subset_encoded <- as.data.frame(social_media_subset_encoded)

# Convert Morning_tireness back to a categorical variable
social_media_subset_encoded$Weekly_Feelings <- as.factor(social_media_subset$Weekly_Feelings)


social_media_subset_encoded1 <- social_media_subset_encoded
selected_cols <- social_media_subset_encoded1

# Convert 'quality' to factor if it's not already
selected_cols$Weekly_Feelings <- as.factor(selected_cols$Weekly_Feelings)

# Perform aggregation
grouped_avg <- aggregate(. ~ Weekly_Feelings, data = selected_cols[, -1], FUN = mean)

# Print the grouped averages
print(grouped_avg)
##   Weekly_Feelings Linkedin_Time Snapchat_Time Twitter_Time Whatsapp_Time
## 1               2     0.0000000     0.0000000   0.00000000     0.9077851
## 2               3     1.6149306     0.6086806   0.49898727     0.9351273
## 3               4     0.5799479     0.3758681   0.01678241     1.0376401
## 4               5     0.2500000     0.5031250   0.00000000     0.3541667
##   Youtube_Time  OTT_Time Reddit_Time `Application Type`Learning
## 1    0.1250000 0.0000000  0.00000000                  0.0000000
## 2    0.6919416 2.1035390  0.24556327                  0.0000000
## 3    0.4873843 0.5874377  0.02584877                  0.1666667
## 4    0.2500000 0.7848024  0.07754630                  0.0000000
##   `Application Type`Netflix `Application Type`No Social Media
## 1                0.00000000                         1.0000000
## 2                0.08333333                         0.1666667
## 3                0.00000000                         0.0000000
## 4                0.00000000                         0.0000000
##   `Application Type`OTT `Application Type`Social media
## 1                  0.00                     0.00000000
## 2                  0.25                     0.08333333
## 3                  0.00                     0.33333333
## 4                  0.00                     0.00000000
##   `Application Type`Social Media
## 1                      0.0000000
## 2                      0.4166667
## 3                      0.5000000
## 4                      1.0000000
library(cluster)
## Warning: package 'cluster' was built under R version 4.3.3
# Set the first column as row names
row.names(grouped_avg) <- grouped_avg[, 1]  # Assuming the first column contains row names

# Remove the first column from the dataframe
grouped_avg <- grouped_avg[, -1]

# View the dataframe
grouped_avg
##   Linkedin_Time Snapchat_Time Twitter_Time Whatsapp_Time Youtube_Time  OTT_Time
## 2     0.0000000     0.0000000   0.00000000     0.9077851    0.1250000 0.0000000
## 3     1.6149306     0.6086806   0.49898727     0.9351273    0.6919416 2.1035390
## 4     0.5799479     0.3758681   0.01678241     1.0376401    0.4873843 0.5874377
## 5     0.2500000     0.5031250   0.00000000     0.3541667    0.2500000 0.7848024
##   Reddit_Time `Application Type`Learning `Application Type`Netflix
## 2  0.00000000                  0.0000000                0.00000000
## 3  0.24556327                  0.0000000                0.08333333
## 4  0.02584877                  0.1666667                0.00000000
## 5  0.07754630                  0.0000000                0.00000000
##   `Application Type`No Social Media `Application Type`OTT
## 2                         1.0000000                  0.00
## 3                         0.1666667                  0.25
## 4                         0.0000000                  0.00
## 5                         0.0000000                  0.00
##   `Application Type`Social media `Application Type`Social Media
## 2                     0.00000000                      0.0000000
## 3                     0.08333333                      0.4166667
## 4                     0.33333333                      0.5000000
## 5                     0.00000000                      1.0000000
grouped_avg1 <- grouped_avg[, c("Linkedin_Time", "Twitter_Time", "OTT_Time")]

# Print the modified grouped_avg data frame
print(grouped_avg1)
##   Linkedin_Time Twitter_Time  OTT_Time
## 2     0.0000000   0.00000000 0.0000000
## 3     1.6149306   0.49898727 2.1035390
## 4     0.5799479   0.01678241 0.5874377
## 5     0.2500000   0.00000000 0.7848024
matstd.can <- scale(grouped_avg1)
matstd.can
##   Linkedin_Time Twitter_Time    OTT_Time
## 2   -0.86082073   -0.5224076 -0.97854509
## 3    1.41359204    1.4992293  1.39031409
## 4   -0.04404199   -0.4544140 -0.31701367
## 5   -0.50872931   -0.5224076 -0.09475532
## attr(,"scaled:center")
## Linkedin_Time  Twitter_Time      OTT_Time 
##     0.6112196     0.1289424     0.8689448 
## attr(,"scaled:scale")
## Linkedin_Time  Twitter_Time      OTT_Time 
##     0.7100429     0.2468234     0.8879966
# Creating a (Euclidean) distance matrix of the standardized data 
dist.wine <- dist(matstd.can, method="euclidean")
dist.wine
##           2         3         4
## 3 3.8563536                    
## 4 1.0532685 2.9759683          
## 5 0.9513426 3.1603427 0.5195731
# Invoking hclust command (cluster analysis by single linkage method)      
cluswine.nn <- hclust(dist.wine, method = "single")

# Plotting vertical dendrogram      
# create extra margin room in the dendrogram, on the bottom (Canine species' labels)
#par(mar=c(6, 4, 4, 2) + 0.1)
plot(as.dendrogram(cluswine.nn),ylab="Distance between wine quality",ylim=c(0,2.5),main="Dendrogram of 12 qualities of wine")

matstd.can
##   Linkedin_Time Twitter_Time    OTT_Time
## 2   -0.86082073   -0.5224076 -0.97854509
## 3    1.41359204    1.4992293  1.39031409
## 4   -0.04404199   -0.4544140 -0.31701367
## 5   -0.50872931   -0.5224076 -0.09475532
## attr(,"scaled:center")
## Linkedin_Time  Twitter_Time      OTT_Time 
##     0.6112196     0.1289424     0.8689448 
## attr(,"scaled:scale")
## Linkedin_Time  Twitter_Time      OTT_Time 
##     0.7100429     0.2468234     0.8879966
matstd.new <- scale(matstd.can[,1:3])
matstd.new
##   Linkedin_Time Twitter_Time    OTT_Time
## 2   -0.86082073   -0.5224076 -0.97854509
## 3    1.41359204    1.4992293  1.39031409
## 4   -0.04404199   -0.4544140 -0.31701367
## 5   -0.50872931   -0.5224076 -0.09475532
## attr(,"scaled:center")
##              Linkedin_Time               Twitter_Time 
## -0.00000000000000011102230  0.00000000000000005551115 
##                   OTT_Time 
##  0.00000000000000004857226 
## attr(,"scaled:scale")
## Linkedin_Time  Twitter_Time      OTT_Time 
##             1             1             1
# Creating a (Euclidean) distance matrix of the standardized data
dist.employ <- dist(matstd.new, method="euclidean")
# Invoking hclust command (cluster analysis by single linkage method)
clusemploy.nn <- hclust(dist.employ, method = "single")

plot(as.dendrogram(clusemploy.nn),ylab="Distance between Quality wine",ylim=c(0,6),
     main="Dendrogram. Quality of wine and hierarchy")

plot(as.dendrogram(clusemploy.nn), xlab= "Distance between quality wine", xlim=c(6,0),
     horiz = TRUE,main="Dendrogram. Quality of wine and hierarchy vertical")

library(factoextra)
# Perform hierarchical clustering
res.hc <- hclust(dist(matstd.can))
agn.employ <- agnes(matstd.can, metric="euclidean", stand=TRUE, method = "single")

#  Description of cluster merging
agn.employ$merge
##      [,1] [,2]
## [1,]   -3   -4
## [2,]   -1    1
## [3,]    2   -2
#Dendogram
plot(as.dendrogram(agn.employ), xlab= "Distance between Wine",xlim=c(8,0),
     horiz = TRUE,main="Dendrogram \n Wine Quality hierarchy")

#Interactive Plots
#plot(agn.employ,ask=TRUE)
plot(agn.employ, which.plots=1)

plot(agn.employ, which.plots=2)

plot(agn.employ, which.plots=3)

# Load required libraries
library(factoextra)

# Visualize the optimal number of clusters using the gap statistic
fviz_nbclust(matstd.can, kmeans, method = "gap_stat", k.max = 2)

set.seed(123)
km.res <- kmeans(matstd.can, 2, nstart = 25)
# Visualize
fviz_cluster(km.res, data = matstd.can,
             ellipse.type = "convex",
             palette = "jco",
             ggtheme = theme_minimal())

fviz_dend(res.hc, k = 4, # Cut in four groups
          cex = 0.5, # label size
          k_colors = c("#2E9FDF", "#00AFBB", "#E7B800", "#FC4E07"),
          color_labels_by_k = TRUE, # color labels by groups
          rect = TRUE # Add rectangle around groups
          )
## Warning: The `<scale>` argument of `guides()` cannot be `FALSE`. Use "none" instead as
## of ggplot2 3.3.4.
## ℹ The deprecated feature was likely used in the factoextra package.
##   Please report the issue at <https://github.com/kassambara/factoextra/issues>.
## This warning is displayed once every 8 hours.
## Call `lifecycle::last_lifecycle_warnings()` to see where this warning was
## generated.

selected_cols <- social_media_subset_encoded1

# Convert 'quality' to factor if it's not already
selected_cols$Weekly_Feelings <- as.factor(selected_cols$Weekly_Feelings)

# Perform aggregation
grouped_avg <- aggregate(. ~ Morning_tireness, data = selected_cols[, -1], FUN = mean)
# Print the grouped averages
print(grouped_avg)
##   Morning_tireness Linkedin_Time Snapchat_Time Twitter_Time Whatsapp_Time
## 1               No     1.3469370     0.5968006   0.40699405     0.8979271
## 2              Yes     0.6431052     0.3157738   0.05580357     0.9275010
##   Youtube_Time  OTT_Time Reddit_Time `Application Type`Learning
## 1    0.6739707 1.8853861  0.19940476                  0.0000000
## 2    0.3452877 0.5630418  0.06646825                  0.1428571
##   `Application Type`Netflix `Application Type`No Social Media
## 1                0.07142857                         0.2142857
## 2                0.00000000                         0.0000000
##   `Application Type`OTT `Application Type`Social media
## 1             0.1428571                      0.1428571
## 2             0.1428571                      0.1428571
##   `Application Type`Social Media Weekly_Feelings
## 1                      0.4285714        2.285714
## 2                      0.5714286        2.714286
grouped_avg2 <- grouped_avg[, !grepl("`Application Type`OTT", names(grouped_avg))]
grouped_avg2
##   Morning_tireness Linkedin_Time Snapchat_Time Twitter_Time Whatsapp_Time
## 1               No     1.3469370     0.5968006   0.40699405     0.8979271
## 2              Yes     0.6431052     0.3157738   0.05580357     0.9275010
##   Youtube_Time  OTT_Time Reddit_Time `Application Type`Learning
## 1    0.6739707 1.8853861  0.19940476                  0.0000000
## 2    0.3452877 0.5630418  0.06646825                  0.1428571
##   `Application Type`Netflix `Application Type`No Social Media
## 1                0.07142857                         0.2142857
## 2                0.00000000                         0.0000000
##   `Application Type`Social media `Application Type`Social Media Weekly_Feelings
## 1                      0.1428571                      0.4285714        2.285714
## 2                      0.1428571                      0.5714286        2.714286
# Load the psych package
library(psych)
# Find columns with "_Time"
time_columns <- grep("_Time$", names(social_media_cleaned), value = TRUE)
time_columns
## [1] "Instagram_Time" "Linkedin_Time"  "Snapchat_Time"  "Twitter_Time"  
## [5] "Whatsapp_Time"  "Youtube_Time"   "OTT_Time"       "Reddit_Time"
# Define additional columns to keep
additional_columns <- c("Morning_tireness", "Application Type")

# Combine time columns and additional columns to keep
columns_to_keep <- c(time_columns, additional_columns)

# Select columns to keep from the dataframe
social_media_subset <- social_media_cleaned[columns_to_keep]


# Remove the column "Application Type"
social_media_subset2 <- social_media_subset[, !grepl("^Application Type$", colnames(social_media_subset))]

# Check the updated data frame
head(social_media_subset)
## # A tibble: 6 × 10
##   Instagram_Time Linkedin_Time Snapchat_Time Twitter_Time Whatsapp_Time
##            <dbl>         <dbl>         <dbl>        <dbl>         <dbl>
## 1          3.5           4             1            5             1    
## 2          0.322         0.217         0.153        0             0.174
## 3          0.157         0.292         0.503        0             0.410
## 4          0.224         0.222         0.503        0             0.221
## 5          0             1.11          0            0.290         0.125
## 6          0.722         0.292         0.503        0             0.5  
## # ℹ 5 more variables: Youtube_Time <dbl>, OTT_Time <dbl>, Reddit_Time <dbl>,
## #   Morning_tireness <chr>, `Application Type` <chr>
social_media_subset2
## # A tibble: 21 × 9
##    Instagram_Time Linkedin_Time Snapchat_Time Twitter_Time Whatsapp_Time
##             <dbl>         <dbl>         <dbl>        <dbl>         <dbl>
##  1          3.5           4             1            5             1    
##  2          0.322         0.217         0.153        0             0.174
##  3          0.157         0.292         0.503        0             0.410
##  4          0.224         0.222         0.503        0             0.221
##  5          0             1.11          0            0.290         0.125
##  6          0.722         0.292         0.503        0             0.5  
##  7          0.224         0.167         0            0             0.25 
##  8          0.292         0.167         0.125        0             0.417
##  9          0.360        10             3.83         0             6.15 
## 10          0.722         0             0            0             0.908
## # ℹ 11 more rows
## # ℹ 4 more variables: Youtube_Time <dbl>, OTT_Time <dbl>, Reddit_Time <dbl>,
## #   Morning_tireness <chr>
# Group by column 6 and calculate the average of all other columns within each group
grouped_avg <- aggregate(. ~ Morning_tireness, data = social_media_subset2[, -6], FUN = mean)

# Print the grouped averages
print(grouped_avg)
##   Morning_tireness Instagram_Time Linkedin_Time Snapchat_Time Twitter_Time
## 1               No       0.575135     1.2828125     0.6295387   0.41418651
## 2              Yes       1.016107     0.7713542     0.2502976   0.04141865
##   Whatsapp_Time  OTT_Time Reddit_Time
## 1     0.8859832 1.9078068  0.19940476
## 2     0.9513889 0.5182005  0.06646825
# Set the first column as row names
row.names(grouped_avg) <- grouped_avg[, 1]  # Assuming the first column contains row names

# Remove the first column from the dataframe
grouped_avg <- grouped_avg[, -1]

# View the dataframe
grouped_avg
##     Instagram_Time Linkedin_Time Snapchat_Time Twitter_Time Whatsapp_Time
## No        0.575135     1.2828125     0.6295387   0.41418651     0.8859832
## Yes       1.016107     0.7713542     0.2502976   0.04141865     0.9513889
##      OTT_Time Reddit_Time
## No  1.9078068  0.19940476
## Yes 0.5182005  0.06646825
grouped_avg
##     Instagram_Time Linkedin_Time Snapchat_Time Twitter_Time Whatsapp_Time
## No        0.575135     1.2828125     0.6295387   0.41418651     0.8859832
## Yes       1.016107     0.7713542     0.2502976   0.04141865     0.9513889
##      OTT_Time Reddit_Time
## No  1.9078068  0.19940476
## Yes 0.5182005  0.06646825
fit.pc <- principal(grouped_avg[-1], nfactors=3, rotate="varimax")
## Warning in cor.smooth(r): Matrix was not positive definite, smoothing was done
## Warning in fa.stats(r = r, f = f, phi = phi, n.obs = n.obs, np.obs = np.obs, :
## the model inverse times the r matrix is singular, replaced with Identity matrix
## which means fits are wrong
## Warning in principal(grouped_avg[-1], nfactors = 3, rotate = "varimax"): The
## matrix is not positive semi-definite, scores found from Structure loadings
fit.pc
## Principal Components Analysis
## Call: principal(r = grouped_avg[-1], nfactors = 3, rotate = "varimax")
## Standardized loadings (pattern matrix) based upon correlation matrix
##               RC3   RC2 RC1 h2                   u2 com
## Linkedin_Time   1  0.01   0  1 -0.00000000000000111   1
## Snapchat_Time   1  0.01   0  1 -0.00000000000000067   1
## Twitter_Time    1  0.01   0  1  0.00000000000000000   1
## Whatsapp_Time  -1 -0.01   0  1  0.00000000000000000   1
## OTT_Time        1  0.01   0  1  0.00000000000000000   1
## Reddit_Time     1  0.01   0  1  0.00000000000000000   1
## 
##                       RC3 RC2 RC1
## SS loadings             6   0   0
## Proportion Var          1   0   0
## Cumulative Var          1   1   1
## Proportion Explained    1   0   0
## Cumulative Proportion   1   1   1
## 
## Mean item complexity =  1
## Test of the hypothesis that 3 components are sufficient.
## 
## The root mean square of the residuals (RMSR) is  0 
##  with the empirical chi square  0  with prob <  NA 
## 
## Fit based upon off diagonal values = 1
round(fit.pc$values, 3)
## [1] 6 0 0 0 0 0
print(fit.pc$loadings)
## 
## Loadings:
##               RC3    RC2    RC1   
## Linkedin_Time  1.000              
## Snapchat_Time  1.000              
## Twitter_Time   1.000              
## Whatsapp_Time -1.000              
## OTT_Time       1.000              
## Reddit_Time    1.000              
## 
##                RC3 RC2 RC1
## SS loadings      6   0   0
## Proportion Var   1   0   0
## Cumulative Var   1   1   1
# Communalities
fit.pc$communality
## Linkedin_Time Snapchat_Time  Twitter_Time Whatsapp_Time      OTT_Time 
##             1             1             1             1             1 
##   Reddit_Time 
##             1
# Rotated factor scores, Notice the columns ordering: RC1, RC3, RC2 and RC4
fit.pc$scores
##           RC3         RC2           RC1
## No   4.242548  0.02809111  0.0003241386
## Yes -4.242548 -0.02809111 -0.0003241386
# Play with FA utilities
fa.plot(fit.pc) # See Correlations within Factors

fa.diagram(fit.pc) # Visualize the relationship

fa.parallel(grouped_avg[-1]) # See factor recommendation
## In smc, smcs < 0 were set to .0
## In smc, smcs < 0 were set to .0
## In smc, smcs < 0 were set to .0
## Warning in cor.smooth(r): Matrix was not positive definite, smoothing was done
## In factor.scores, the correlation matrix is singular, the pseudo inverse is  used
## In smc, smcs < 0 were set to .0
## In smc, smcs < 0 were set to .0
## Warning in cor.smooth(r): Matrix was not positive definite, smoothing was done
## In factor.scores, the correlation matrix is singular, the pseudo inverse is  used
## In smc, smcs < 0 were set to .0
## In smc, smcs < 0 were set to .0
## Warning in cor.smooth(r): Matrix was not positive definite, smoothing was done
## In factor.scores, the correlation matrix is singular, the pseudo inverse is  used
## Warning in cor(sampledata, use = use): the standard deviation is zero
## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero
## In smc, smcs < 0 were set to .0
## In smc, smcs < 0 were set to .0
## Warning in cor.smooth(r): Matrix was not positive definite, smoothing was done
## In factor.scores, the correlation matrix is singular, the pseudo inverse is  used
## In smc, smcs < 0 were set to .0
## In smc, smcs < 0 were set to .0
## Warning in cor.smooth(r): Matrix was not positive definite, smoothing was done
## In factor.scores, the correlation matrix is singular, the pseudo inverse is  used
## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero
## In smc, smcs < 0 were set to .0
## In smc, smcs < 0 were set to .0
## Warning in cor.smooth(r): Matrix was not positive definite, smoothing was done
## In factor.scores, the correlation matrix is singular, the pseudo inverse is  used
## In smc, smcs < 0 were set to .0
## In smc, smcs < 0 were set to .0
## Warning in cor.smooth(r): Matrix was not positive definite, smoothing was done
## In factor.scores, the correlation matrix is singular, the pseudo inverse is  used
## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero
## In smc, smcs < 0 were set to .0
## In smc, smcs < 0 were set to .0
## Warning in cor.smooth(r): Matrix was not positive definite, smoothing was done
## In factor.scores, the correlation matrix is singular, the pseudo inverse is  used
## In smc, smcs < 0 were set to .0
## In smc, smcs < 0 were set to .0
## Warning in cor.smooth(r): Matrix was not positive definite, smoothing was done
## In factor.scores, the correlation matrix is singular, the pseudo inverse is  used
## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero
## In smc, smcs < 0 were set to .0
## In smc, smcs < 0 were set to .0
## Warning in cor.smooth(r): Matrix was not positive definite, smoothing was done
## In factor.scores, the correlation matrix is singular, the pseudo inverse is  used
## In smc, smcs < 0 were set to .0
## In smc, smcs < 0 were set to .0
## Warning in cor.smooth(r): Matrix was not positive definite, smoothing was done
## In factor.scores, the correlation matrix is singular, the pseudo inverse is  used
## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero
## In smc, smcs < 0 were set to .0
## In smc, smcs < 0 were set to .0
## Warning in cor.smooth(r): Matrix was not positive definite, smoothing was done
## In factor.scores, the correlation matrix is singular, the pseudo inverse is  used
## In smc, smcs < 0 were set to .0
## In smc, smcs < 0 were set to .0
## Warning in cor.smooth(r): Matrix was not positive definite, smoothing was done
## In factor.scores, the correlation matrix is singular, the pseudo inverse is  used
## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero
## In smc, smcs < 0 were set to .0
## In smc, smcs < 0 were set to .0
## Warning in cor.smooth(r): Matrix was not positive definite, smoothing was done
## In factor.scores, the correlation matrix is singular, the pseudo inverse is  used
## In smc, smcs < 0 were set to .0
## In smc, smcs < 0 were set to .0
## Warning in cor.smooth(r): Matrix was not positive definite, smoothing was done
## In factor.scores, the correlation matrix is singular, the pseudo inverse is  used
## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero
## In smc, smcs < 0 were set to .0
## In smc, smcs < 0 were set to .0
## Warning in cor.smooth(r): Matrix was not positive definite, smoothing was done
## In factor.scores, the correlation matrix is singular, the pseudo inverse is  used
## In smc, smcs < 0 were set to .0
## In smc, smcs < 0 were set to .0
## Warning in cor.smooth(r): Matrix was not positive definite, smoothing was done
## In factor.scores, the correlation matrix is singular, the pseudo inverse is  used
## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero
## In smc, smcs < 0 were set to .0
## In smc, smcs < 0 were set to .0
## Warning in cor.smooth(r): Matrix was not positive definite, smoothing was done
## In factor.scores, the correlation matrix is singular, the pseudo inverse is  used
## In smc, smcs < 0 were set to .0
## In smc, smcs < 0 were set to .0
## Warning in cor.smooth(r): Matrix was not positive definite, smoothing was done
## In factor.scores, the correlation matrix is singular, the pseudo inverse is  used
## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero
## In smc, smcs < 0 were set to .0
## In smc, smcs < 0 were set to .0
## Warning in cor.smooth(r): Matrix was not positive definite, smoothing was done
## In factor.scores, the correlation matrix is singular, the pseudo inverse is  used
## In smc, smcs < 0 were set to .0
## In smc, smcs < 0 were set to .0
## Warning in cor.smooth(r): Matrix was not positive definite, smoothing was done
## In factor.scores, the correlation matrix is singular, the pseudo inverse is  used
## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero
## In smc, smcs < 0 were set to .0
## In smc, smcs < 0 were set to .0
## Warning in cor.smooth(r): Matrix was not positive definite, smoothing was done
## In factor.scores, the correlation matrix is singular, the pseudo inverse is  used
## In smc, smcs < 0 were set to .0
## In smc, smcs < 0 were set to .0
## Warning in cor.smooth(r): Matrix was not positive definite, smoothing was done
## In factor.scores, the correlation matrix is singular, the pseudo inverse is  used
## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero
## In smc, smcs < 0 were set to .0
## In smc, smcs < 0 were set to .0
## Warning in cor.smooth(r): Matrix was not positive definite, smoothing was done
## In factor.scores, the correlation matrix is singular, the pseudo inverse is  used
## In smc, smcs < 0 were set to .0
## In smc, smcs < 0 were set to .0
## Warning in cor.smooth(r): Matrix was not positive definite, smoothing was done
## In factor.scores, the correlation matrix is singular, the pseudo inverse is  used
## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero
## In smc, smcs < 0 were set to .0
## In smc, smcs < 0 were set to .0
## Warning in cor.smooth(r): Matrix was not positive definite, smoothing was done
## In factor.scores, the correlation matrix is singular, the pseudo inverse is  used
## In smc, smcs < 0 were set to .0
## In smc, smcs < 0 were set to .0
## Warning in cor.smooth(r): Matrix was not positive definite, smoothing was done
## In factor.scores, the correlation matrix is singular, the pseudo inverse is  used
## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero
## In smc, smcs < 0 were set to .0
## In smc, smcs < 0 were set to .0
## Warning in cor.smooth(r): Matrix was not positive definite, smoothing was done
## In factor.scores, the correlation matrix is singular, the pseudo inverse is  used
## In smc, smcs < 0 were set to .0
## In smc, smcs < 0 were set to .0
## Warning in cor.smooth(r): Matrix was not positive definite, smoothing was done
## In factor.scores, the correlation matrix is singular, the pseudo inverse is  used
## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero
## In smc, smcs < 0 were set to .0
## In smc, smcs < 0 were set to .0
## Warning in cor.smooth(r): Matrix was not positive definite, smoothing was done
## In factor.scores, the correlation matrix is singular, the pseudo inverse is  used
## In smc, smcs < 0 were set to .0
## In smc, smcs < 0 were set to .0
## Warning in cor.smooth(r): Matrix was not positive definite, smoothing was done
## In factor.scores, the correlation matrix is singular, the pseudo inverse is  used
## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero
## In smc, smcs < 0 were set to .0
## In smc, smcs < 0 were set to .0
## Warning in cor.smooth(r): Matrix was not positive definite, smoothing was done
## In factor.scores, the correlation matrix is singular, the pseudo inverse is  used
## In smc, smcs < 0 were set to .0
## In smc, smcs < 0 were set to .0
## Warning in cor.smooth(r): Matrix was not positive definite, smoothing was done
## In factor.scores, the correlation matrix is singular, the pseudo inverse is  used
## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero
## In smc, smcs < 0 were set to .0
## In smc, smcs < 0 were set to .0
## Warning in cor.smooth(r): Matrix was not positive definite, smoothing was done
## In factor.scores, the correlation matrix is singular, the pseudo inverse is  used
## In smc, smcs < 0 were set to .0
## In smc, smcs < 0 were set to .0
## Warning in cor.smooth(r): Matrix was not positive definite, smoothing was done
## In factor.scores, the correlation matrix is singular, the pseudo inverse is  used
## Warning in cor(sampledata, use = use): the standard deviation is zero
## In smc, smcs < 0 were set to .0
## In smc, smcs < 0 were set to .0
## Warning in cor.smooth(r): Matrix was not positive definite, smoothing was done
## In factor.scores, the correlation matrix is singular, the pseudo inverse is  used
## In smc, smcs < 0 were set to .0
## In smc, smcs < 0 were set to .0
## Warning in cor.smooth(r): Matrix was not positive definite, smoothing was done
## In factor.scores, the correlation matrix is singular, the pseudo inverse is  used
## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero
## In smc, smcs < 0 were set to .0
## In smc, smcs < 0 were set to .0
## Warning in cor.smooth(r): Matrix was not positive definite, smoothing was done
## In factor.scores, the correlation matrix is singular, the pseudo inverse is  used
## In smc, smcs < 0 were set to .0
## In smc, smcs < 0 were set to .0
## Warning in cor.smooth(r): Matrix was not positive definite, smoothing was done
## In factor.scores, the correlation matrix is singular, the pseudo inverse is  used
## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero

## Warning in cor(sampledata, use = use): the standard deviation is zero
## In smc, smcs < 0 were set to .0
## In smc, smcs < 0 were set to .0
## Warning in cor.smooth(r): Matrix was not positive definite, smoothing was done
## In factor.scores, the correlation matrix is singular, the pseudo inverse is  used
## In smc, smcs < 0 were set to .0
## In smc, smcs < 0 were set to .0
## Warning in cor.smooth(r): Matrix was not positive definite, smoothing was done
## In factor.scores, the correlation matrix is singular, the pseudo inverse is  used

## Parallel analysis suggests that the number of factors =  0  and the number of components =  0
plot(fit.pc$values, type="b", main="Scree Plot")

# Find columns with "_Time"
time_columns <- grep("_Time$", names(social_media_cleaned), value = TRUE)
time_columns
## [1] "Instagram_Time" "Linkedin_Time"  "Snapchat_Time"  "Twitter_Time"  
## [5] "Whatsapp_Time"  "Youtube_Time"   "OTT_Time"       "Reddit_Time"
# Define additional columns to keep
additional_columns <- c("Morning_tireness", "Application Type")

# Combine time columns and additional columns to keep
columns_to_keep <- c(time_columns, additional_columns)

# Select columns to keep from the dataframe
social_media_subset <- social_media_cleaned[columns_to_keep]
social_media_subset
## # A tibble: 21 × 10
##    Instagram_Time Linkedin_Time Snapchat_Time Twitter_Time Whatsapp_Time
##             <dbl>         <dbl>         <dbl>        <dbl>         <dbl>
##  1          3.5           4             1            5             1    
##  2          0.322         0.217         0.153        0             0.174
##  3          0.157         0.292         0.503        0             0.410
##  4          0.224         0.222         0.503        0             0.221
##  5          0             1.11          0            0.290         0.125
##  6          0.722         0.292         0.503        0             0.5  
##  7          0.224         0.167         0            0             0.25 
##  8          0.292         0.167         0.125        0             0.417
##  9          0.360        10             3.83         0             6.15 
## 10          0.722         0             0            0             0.908
## # ℹ 11 more rows
## # ℹ 5 more variables: Youtube_Time <dbl>, OTT_Time <dbl>, Reddit_Time <dbl>,
## #   Morning_tireness <chr>, `Application Type` <chr>
# Load the caret package
library(caret)

# Specify the column names for one-hot encoding, excluding Morning_tireness
columns <- setdiff(names(social_media_subset), "Morning_tireness")

# Create a formula for one-hot encoding excluding Morning_tireness
formula_str <- paste("Morning_tireness ~ .", collapse = " + ")

# Convert the formula string to a formula object
formula <- as.formula(formula_str)

# Create dummy variables
dummy <- dummyVars(formula, data = social_media_subset)

# Apply one-hot encoding
social_media_subset_encoded <- predict(dummy, newdata = social_media_subset)

# Convert the result to a data frame
social_media_subset_encoded <- as.data.frame(social_media_subset_encoded)

# Convert Morning_tireness back to a categorical variable
social_media_subset_encoded$Morning_tireness <- as.factor(social_media_subset$Morning_tireness)


social_media_subset_encoded
##    Instagram_Time Linkedin_Time Snapchat_Time Twitter_Time Whatsapp_Time
## 1       3.5000000     4.0000000     1.0000000    5.0000000     1.0000000
## 2       0.3222222     0.2166667     0.1534722    0.0000000     0.1743056
## 3       0.1569444     0.2916667     0.5031250    0.0000000     0.4097222
## 4       0.2243056     0.2215278     0.5031250    0.0000000     0.2208333
## 5       0.0000000     1.1123264     0.0000000    0.2899306     0.1250000
## 6       0.7221258     0.2916667     0.5031250    0.0000000     0.5000000
## 7       0.2236111     0.1666667     0.0000000    0.0000000     0.2500000
## 8       0.2916667     0.1666667     0.1250000    0.0000000     0.4166667
## 9       0.3604167    10.0000000     3.8333333    0.0000000     6.1500000
## 10      0.7221258     0.0000000     0.0000000    0.0000000     0.9077851
## 11      0.1909722     1.1123264     0.5031250    0.1006944     0.9077851
## 12      0.1388889     0.1041667     0.5031250    0.1180556     0.1527778
## 13      5.3003472     1.5208333     0.6208333    0.0000000     4.0208333
## 14      0.2500000     0.1250000     0.5031250    0.2899306     0.1423611
## 15      0.1937500     0.1562500     0.5031250    0.0000000     0.2708333
## 16      0.2916667     0.2083333     0.5031250    0.0000000     0.2083333
## 17      0.4083333     1.1123264     0.0000000    0.2899306     0.5562500
## 18      0.2833333     1.1123264     0.5031250    0.0000000     0.2895833
## 19      0.2361111     0.1631944     0.0000000    0.0000000     0.3715278
## 20      0.6256944     0.1645833     0.3048611    0.0000000     0.6395833
## 21      0.7221258     1.1123264     0.0000000    0.0000000     1.3493056
##    Youtube_Time   OTT_Time Reddit_Time `Application Type`Learning
## 1     2.5000000 14.5000000   2.5000000                          0
## 2     0.1770833  0.0000000   0.0000000                          0
## 3     0.5644097  1.4446047   0.0000000                          0
## 4     0.5644097  1.4446047   0.0000000                          0
## 5     0.1458333  1.4446047   0.1550926                          0
## 6     0.2916667  0.1250000   0.0000000                          0
## 7     0.1250000  0.0000000   0.0000000                          0
## 8     0.5644097  0.1250000   0.0000000                          0
## 9     4.0000000  3.0000000   0.0000000                          0
## 10    0.1250000  0.0000000   0.0000000                          0
## 11    0.5644097  0.0000000   0.0000000                          1
## 12    0.1041667  1.4446047   0.0000000                          0
## 13    0.5416667  0.5104167   0.1550926                          0
## 14    0.1041667  1.4446047   0.0000000                          0
## 15    0.1305556  1.4446047   0.2916667                          0
## 16    0.2083333  1.4446047   0.1550926                          0
## 17    0.1472222  1.4446047   0.0000000                          0
## 18    0.5644097  0.1027778   0.0000000                          0
## 19    0.2145833  0.0000000   0.0000000                          0
## 20    0.2152778  0.4166667   0.0000000                          0
## 21    0.0000000  0.0000000   0.0000000                          0
##    `Application Type`Netflix `Application Type`No Social Media
## 1                          0                                 0
## 2                          0                                 0
## 3                          0                                 0
## 4                          0                                 0
## 5                          0                                 0
## 6                          0                                 0
## 7                          0                                 0
## 8                          0                                 0
## 9                          0                                 0
## 10                         0                                 1
## 11                         0                                 0
## 12                         0                                 0
## 13                         0                                 0
## 14                         0                                 1
## 15                         1                                 0
## 16                         0                                 0
## 17                         0                                 0
## 18                         0                                 0
## 19                         0                                 1
## 20                         0                                 0
## 21                         0                                 0
##    `Application Type`OTT `Application Type`Social media
## 1                      1                              0
## 2                      0                              0
## 3                      0                              0
## 4                      0                              0
## 5                      1                              0
## 6                      0                              0
## 7                      0                              1
## 8                      0                              1
## 9                      0                              0
## 10                     0                              0
## 11                     0                              0
## 12                     1                              0
## 13                     0                              0
## 14                     0                              0
## 15                     0                              0
## 16                     0                              0
## 17                     0                              1
## 18                     0                              0
## 19                     0                              0
## 20                     0                              0
## 21                     0                              0
##    `Application Type`Social Media Morning_tireness
## 1                               0               No
## 2                               1               No
## 3                               1               No
## 4                               1               No
## 5                               0              Yes
## 6                               1               No
## 7                               0              Yes
## 8                               0              Yes
## 9                               1               No
## 10                              0               No
## 11                              0               No
## 12                              0               No
## 13                              1              Yes
## 14                              0               No
## 15                              0               No
## 16                              1              Yes
## 17                              0               No
## 18                              1              Yes
## 19                              0               No
## 20                              1               No
## 21                              1              Yes
colnames(social_media_subset_encoded)
##  [1] "Instagram_Time"                    "Linkedin_Time"                    
##  [3] "Snapchat_Time"                     "Twitter_Time"                     
##  [5] "Whatsapp_Time"                     "Youtube_Time"                     
##  [7] "OTT_Time"                          "Reddit_Time"                      
##  [9] "`Application Type`Learning"        "`Application Type`Netflix"        
## [11] "`Application Type`No Social Media" "`Application Type`OTT"            
## [13] "`Application Type`Social media"    "`Application Type`Social Media"   
## [15] "Morning_tireness"
## Exploratory Analysis
attach(social_media_subset_encoded)
## The following objects are masked from social_media_cleaned:
## 
##     Instagram_Time, Linkedin_Time, Morning_tireness, Morning_tireness,
##     OTT_Time, Reddit_Time, Snapchat_Time, Twitter_Time, Whatsapp_Time,
##     Youtube_Time
xtabs(~ Morning_tireness + `\`Application Type\`Social media`, data = social_media_subset_encoded)
##                 `Application Type`Social media
## Morning_tireness  0  1
##              No  13  1
##              Yes  5  2
xtabs(~ Morning_tireness + `\`Application Type\`Learning`, data = social_media_subset_encoded)
##                 `Application Type`Learning
## Morning_tireness  0  1
##              No  13  1
##              Yes  7  0
xtabs(~ Morning_tireness + `\`Application Type\`No Social Media`, data = social_media_subset_encoded)
##                 `Application Type`No Social Media
## Morning_tireness  0  1
##              No  11  3
##              Yes  7  0
xtabs(~ Morning_tireness + Instagram_Time, data=social_media_subset_encoded)
##                 Instagram_Time
## Morning_tireness 0 0.138888888888889 0.156944444444444 0.190972222222222
##              No  0                 1                 1                 1
##              Yes 1                 0                 0                 0
##                 Instagram_Time
## Morning_tireness 0.19375 0.223611111111111 0.224305555555556 0.236111111111111
##              No        1                 0                 1                 1
##              Yes       0                 1                 0                 0
##                 Instagram_Time
## Morning_tireness 0.25 0.283333333333333 0.291666666666667 0.322222222222222
##              No     1                 0                 0                 1
##              Yes    0                 1                 2                 0
##                 Instagram_Time
## Morning_tireness 0.360416666666667 0.408333333333333 0.625694444444444
##              No                  1                 1                 1
##              Yes                 0                 0                 0
##                 Instagram_Time
## Morning_tireness 0.722125771592593 3.5 5.300347222
##              No                  2   1           0
##              Yes                 1   0           1
xtabs(~ Morning_tireness + Linkedin_Time, data=social_media_subset_encoded)
##                 Linkedin_Time
## Morning_tireness 0 0.104166666666667 0.125 0.15625 0.163194444444444
##              No  1                 1     1       1                 1
##              Yes 0                 0     0       0                 0
##                 Linkedin_Time
## Morning_tireness 0.164583333333333 0.166666666666667 0.208333333333333
##              No                  1                 0                 0
##              Yes                 0                 2                 1
##                 Linkedin_Time
## Morning_tireness 0.216666666666667 0.221527777777778 0.291666666666667
##              No                  1                 1                 2
##              Yes                 0                 0                 0
##                 Linkedin_Time
## Morning_tireness 1.11232638886806 1.520833333 4 10
##              No                 2           0 1  1
##              Yes                3           1 0  0
xtabs(~ Morning_tireness + Snapchat_Time, data=social_media_subset_encoded)
##                 Snapchat_Time
## Morning_tireness 0 0.125 0.153472222222222 0.304861111111111 0.503124999997222
##              No  3     0                 1                 1                 7
##              Yes 3     1                 0                 0                 2
##                 Snapchat_Time
## Morning_tireness 0.6208333333 1 3.83333333333333
##              No             0 1                1
##              Yes            1 0                0
xtabs(~ Morning_tireness + Whatsapp_Time, data=social_media_subset_encoded)
##                 Whatsapp_Time
## Morning_tireness 0.125 0.142361111111111 0.152777777777778 0.174305555555556
##              No      0                 1                 1                 1
##              Yes     1                 0                 0                 0
##                 Whatsapp_Time
## Morning_tireness 0.208333333333333 0.220833333333333 0.25 0.270833333333333
##              No                  0                 1    0                 1
##              Yes                 1                 0    1                 0
##                 Whatsapp_Time
## Morning_tireness 0.289583333333333 0.371527777777778 0.409722222222222
##              No                  0                 1                 1
##              Yes                 1                 0                 0
##                 Whatsapp_Time
## Morning_tireness 0.416666666666667 0.5 0.55625 0.639583333333333
##              No                  0   1       1                 1
##              Yes                 1   0       0                 0
##                 Whatsapp_Time
## Morning_tireness 0.907785087701754 1 1.34930555555556 4.020833333 6.15
##              No                  2 1                0           0    1
##              Yes                 0 0                1           1    0
xtabs(~ Morning_tireness + OTT_Time, data=social_media_subset_encoded)
##                 OTT_Time
## Morning_tireness 0 0.102777777777778 0.125 0.416666666666667 0.5104166667
##              No  4                 0     1                 1            0
##              Yes 2                 1     1                 0            1
##                 OTT_Time
## Morning_tireness 1.44460470085726 3 14.5
##              No                 6 1    1
##              Yes                2 0    0
xtabs(~ Morning_tireness + Reddit_Time, data=social_media_subset_encoded)
##                 Reddit_Time
## Morning_tireness  0 0.155092592592593 0.291666666666667 2.5
##              No  12                 0                 1   1
##              Yes  4                 3                 0   0
xtabs(~ Morning_tireness + Youtube_Time, data=social_media_subset_encoded)
##                 Youtube_Time
## Morning_tireness 0 0.104166666666667 0.125 0.130555555555556 0.145833333333333
##              No  0                 2     1                 1                 0
##              Yes 1                 0     1                 0                 1
##                 Youtube_Time
## Morning_tireness 0.147222222222222 0.177083333333333 0.208333333333333
##              No                  1                 1                 0
##              Yes                 0                 0                 1
##                 Youtube_Time
## Morning_tireness 0.214583333333333 0.215277777777778 0.291666666666667
##              No                  1                 1                 1
##              Yes                 0                 0                 0
##                 Youtube_Time
## Morning_tireness 0.5416666667 0.564409722224306 2.5 4
##              No             0                 3   1 1
##              Yes            1                 2   0 0
  1. Model Development (2 points)

To assess the model development, we typically look at several key aspects:

Significance of coefficients: We examine the estimates, standard errors, z-values, and p-values of the coefficients to determine if they are statistically significant. In your output, the intercept and some coefficients like OTT_Time and Snapchat_Time have p-values greater than 0.05, suggesting they may not be statistically significant predictors.

Model fit: We evaluate the model fit using deviance statistics (Null and Residual deviance) and AIC (Akaike Information Criterion). Lower values of AIC indicate better model fit. In your output, the residual deviance is lower than the null deviance, indicating that the model explains some of the variance in the data. However, the AIC is relatively high, suggesting that the model may not fit the data well.

Fisher Scoring iterations: The number of iterations performed during the optimization process. Higher numbers may indicate convergence issues.

Interpretation of coefficients: We interpret the coefficients in relation to the response variable. For example, a positive coefficient for Whatsapp_Time suggests that as the time spent on WhatsApp increases, the odds of morning tiredness also increase.

Based on this information, we can conclude that the model may have some limitations in terms of statistical significance and model fit. Further investigation and possibly model refinement may be necessary.

social_media_subset_encoded
##    Instagram_Time Linkedin_Time Snapchat_Time Twitter_Time Whatsapp_Time
## 1       3.5000000     4.0000000     1.0000000    5.0000000     1.0000000
## 2       0.3222222     0.2166667     0.1534722    0.0000000     0.1743056
## 3       0.1569444     0.2916667     0.5031250    0.0000000     0.4097222
## 4       0.2243056     0.2215278     0.5031250    0.0000000     0.2208333
## 5       0.0000000     1.1123264     0.0000000    0.2899306     0.1250000
## 6       0.7221258     0.2916667     0.5031250    0.0000000     0.5000000
## 7       0.2236111     0.1666667     0.0000000    0.0000000     0.2500000
## 8       0.2916667     0.1666667     0.1250000    0.0000000     0.4166667
## 9       0.3604167    10.0000000     3.8333333    0.0000000     6.1500000
## 10      0.7221258     0.0000000     0.0000000    0.0000000     0.9077851
## 11      0.1909722     1.1123264     0.5031250    0.1006944     0.9077851
## 12      0.1388889     0.1041667     0.5031250    0.1180556     0.1527778
## 13      5.3003472     1.5208333     0.6208333    0.0000000     4.0208333
## 14      0.2500000     0.1250000     0.5031250    0.2899306     0.1423611
## 15      0.1937500     0.1562500     0.5031250    0.0000000     0.2708333
## 16      0.2916667     0.2083333     0.5031250    0.0000000     0.2083333
## 17      0.4083333     1.1123264     0.0000000    0.2899306     0.5562500
## 18      0.2833333     1.1123264     0.5031250    0.0000000     0.2895833
## 19      0.2361111     0.1631944     0.0000000    0.0000000     0.3715278
## 20      0.6256944     0.1645833     0.3048611    0.0000000     0.6395833
## 21      0.7221258     1.1123264     0.0000000    0.0000000     1.3493056
##    Youtube_Time   OTT_Time Reddit_Time `Application Type`Learning
## 1     2.5000000 14.5000000   2.5000000                          0
## 2     0.1770833  0.0000000   0.0000000                          0
## 3     0.5644097  1.4446047   0.0000000                          0
## 4     0.5644097  1.4446047   0.0000000                          0
## 5     0.1458333  1.4446047   0.1550926                          0
## 6     0.2916667  0.1250000   0.0000000                          0
## 7     0.1250000  0.0000000   0.0000000                          0
## 8     0.5644097  0.1250000   0.0000000                          0
## 9     4.0000000  3.0000000   0.0000000                          0
## 10    0.1250000  0.0000000   0.0000000                          0
## 11    0.5644097  0.0000000   0.0000000                          1
## 12    0.1041667  1.4446047   0.0000000                          0
## 13    0.5416667  0.5104167   0.1550926                          0
## 14    0.1041667  1.4446047   0.0000000                          0
## 15    0.1305556  1.4446047   0.2916667                          0
## 16    0.2083333  1.4446047   0.1550926                          0
## 17    0.1472222  1.4446047   0.0000000                          0
## 18    0.5644097  0.1027778   0.0000000                          0
## 19    0.2145833  0.0000000   0.0000000                          0
## 20    0.2152778  0.4166667   0.0000000                          0
## 21    0.0000000  0.0000000   0.0000000                          0
##    `Application Type`Netflix `Application Type`No Social Media
## 1                          0                                 0
## 2                          0                                 0
## 3                          0                                 0
## 4                          0                                 0
## 5                          0                                 0
## 6                          0                                 0
## 7                          0                                 0
## 8                          0                                 0
## 9                          0                                 0
## 10                         0                                 1
## 11                         0                                 0
## 12                         0                                 0
## 13                         0                                 0
## 14                         0                                 1
## 15                         1                                 0
## 16                         0                                 0
## 17                         0                                 0
## 18                         0                                 0
## 19                         0                                 1
## 20                         0                                 0
## 21                         0                                 0
##    `Application Type`OTT `Application Type`Social media
## 1                      1                              0
## 2                      0                              0
## 3                      0                              0
## 4                      0                              0
## 5                      1                              0
## 6                      0                              0
## 7                      0                              1
## 8                      0                              1
## 9                      0                              0
## 10                     0                              0
## 11                     0                              0
## 12                     1                              0
## 13                     0                              0
## 14                     0                              0
## 15                     0                              0
## 16                     0                              0
## 17                     0                              1
## 18                     0                              0
## 19                     0                              0
## 20                     0                              0
## 21                     0                              0
##    `Application Type`Social Media Morning_tireness
## 1                               0               No
## 2                               1               No
## 3                               1               No
## 4                               1               No
## 5                               0              Yes
## 6                               1               No
## 7                               0              Yes
## 8                               0              Yes
## 9                               1               No
## 10                              0               No
## 11                              0               No
## 12                              0               No
## 13                              1              Yes
## 14                              0               No
## 15                              0               No
## 16                              1              Yes
## 17                              0               No
## 18                              1              Yes
## 19                              0               No
## 20                              1               No
## 21                              1              Yes
social_media_subset_encoded$Morning_tireness
##  [1] No  No  No  No  Yes No  Yes Yes No  No  No  No  Yes No  No  Yes No  Yes No 
## [20] No  Yes
## Levels: No Yes
logistic_simple <- glm(Morning_tireness  ~ Whatsapp_Time + Reddit_Time + OTT_Time + Snapchat_Time + `\`Application Type\`No Social Media`, data=social_media_subset_encoded, family="binomial")
summary(logistic_simple)
## 
## Call:
## glm(formula = Morning_tireness ~ Whatsapp_Time + Reddit_Time + 
##     OTT_Time + Snapchat_Time + `\`Application Type\`No Social Media`, 
##     family = "binomial", data = social_media_subset_encoded)
## 
## Coefficients:
##                                          Estimate Std. Error z value Pr(>|z|)
## (Intercept)                                1.2606     1.2509   1.008    0.314
## Whatsapp_Time                              0.6698     0.8426   0.795    0.427
## Reddit_Time                                9.3967     7.9277   1.185    0.236
## OTT_Time                                  -1.6759     1.3226  -1.267    0.205
## Snapchat_Time                             -4.3120     3.0242  -1.426    0.154
## `\\`Application Type\\`No Social Media`  -19.5785  3256.2541  -0.006    0.995
## 
## (Dispersion parameter for binomial family taken to be 1)
## 
##     Null deviance: 26.734  on 20  degrees of freedom
## Residual deviance: 16.254  on 15  degrees of freedom
## AIC: 28.254
## 
## Number of Fisher Scoring iterations: 17
  1. Model Acceptance (2 points)

Based on the predicted probabilities of morning tiredness from the logistic regression model, we can make some inferences about the likelihood of experiencing morning tiredness for each observation in the dataset.

Here’s how we can interpret the predicted probabilities:

Interpretation of probabilities: The predicted probabilities represent the likelihood (ranging from 0 to 1) of an individual experiencing morning tiredness based on the predictor variables in the model.

Threshold for classification: Typically, we use a threshold probability (e.g., 0.5) to classify observations into binary outcomes (e.g., presence or absence of morning tiredness). For example, if the predicted probability is greater than or equal to 0.5, we might classify the observation as experiencing morning tiredness.

Example inference: Let’s take the first observation as an example. The predicted probability of morning tiredness is approximately 0.0395. Since this probability is below the threshold (e.g., 0.5), we might infer that this individual is less likely to experience morning tiredness based on the predictor variables in the model.

Consideration of other factors: It’s important to note that the predicted probabilities are based on the predictor variables included in the model. Other factors not included in the model may also influence morning tiredness but are not accounted for in these predictions.

predicted.data <- data.frame(probability.of.Morning_tireness=logistic_simple$fitted.values,Morning_tireness=social_media_subset_encoded$Morning_tireness)


options(scipen = 999)
predicted.data
##    probability.of.Morning_tireness Morning_tireness
## 1               0.0395235614826762               No
## 2               0.6716384885563355               No
## 3               0.0449831541922517               No
## 4               0.0398504564629362               No
## 5               0.5940354298936854              Yes
## 6               0.3135813942228092               No
## 7               0.8066003782277937              Yes
## 8               0.6880922989850736              Yes
## 9               0.0000000942663046               No
## 10              0.0000000203570785               No
## 11              0.4253589017612276               No
## 12              0.0381424863643358               No
## 13              0.8674550946383685              Yes
## 14              0.0000000001237208               No
## 15              0.3994501144505230               No
## 16              0.1502085676760677              Yes
## 17              0.3126315852561204               No
## 18              0.2917046572638259              Yes
## 19              0.0000000142143709               No
## 20              0.4197398874555713               No
## 21              0.8970034488440962              Yes
  1. Residual Analysis (2 points)

Coefficients: The coefficients represent the estimated effect of each predictor variable on the log odds of experiencing morning tiredness.

For example: Positive coefficients (e.g., Instagram_Time, Linkedin_Time) indicate that an increase in the corresponding predictor variable is associated with higher odds of morning tiredness.

Negative coefficients (e.g., Twitter_Time, Whatsapp_Time) indicate that an increase in the corresponding predictor variable is associated with lower odds of morning tiredness.

Standard Errors and z-values: These are used to assess the significance of the coefficients. Typically, we look for small standard errors and z-values greater than 1.96 (for a significance level of 0.05) to indicate statistical significance.

However, in this case, all z-values are 0, and the standard errors are extremely large, indicating issues with the model estimation. Null and Residual Deviance: These deviance statistics are used to assess the goodness of fit of the model. The null deviance represents the deviance of the null model (i.e., a model with no predictors), while the residual deviance represents the deviance of the fitted model. A decrease in deviance indicates a better fit.

In this case, the residual deviance is extremely close to zero, suggesting that the model fits the data perfectly, which is highly unlikely and may indicate overfitting or other issues.

AIC (Akaike Information Criterion): AIC is a measure of the relative quality of a statistical model. Lower AIC values indicate better-fitting models. Here, the AIC is relatively high, which contradicts the extremely low residual deviance and suggests potential problems with the model.

Number of Fisher Scoring iterations: The number of iterations performed during the optimization process. Higher numbers may indicate convergence issues.

xtabs(~ probability.of.Morning_tireness +  Whatsapp_Time + OTT_Time + Snapchat_Time + Instagram_Time, data=predicted.data)
## , , OTT_Time = 0, Snapchat_Time = 0, Instagram_Time = 0
## 
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.125 0.142361111111111 0.152777777777778
##      0.000000000123720820519974     0                 0                 0
##      0.0000000142143709248919       0                 0                 0
##      0.0000000203570784591136       0                 0                 0
##      0.0000000942663046181582       0                 0                 0
##      0.0381424863643358             0                 0                 0
##      0.0395235614826762             0                 0                 0
##      0.0398504564629362             0                 0                 0
##      0.0449831541922517             0                 0                 0
##      0.150208567676068              0                 0                 0
##      0.291704657263826              0                 0                 0
##      0.31263158525612               0                 0                 0
##      0.313581394222809              0                 0                 0
##      0.399450114450523              0                 0                 0
##      0.419739887455571              0                 0                 0
##      0.425358901761228              0                 0                 0
##      0.594035429893685              0                 0                 0
##      0.671638488556335              0                 0                 0
##      0.688092298985074              0                 0                 0
##      0.806600378227794              0                 0                 0
##      0.867455094638368              0                 0                 0
##      0.897003448844096              0                 0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.174305555555556 0.208333333333333
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.220833333333333 0.25 0.270833333333333
##      0.000000000123720820519974                 0    0                 0
##      0.0000000142143709248919                   0    0                 0
##      0.0000000203570784591136                   0    0                 0
##      0.0000000942663046181582                   0    0                 0
##      0.0381424863643358                         0    0                 0
##      0.0395235614826762                         0    0                 0
##      0.0398504564629362                         0    0                 0
##      0.0449831541922517                         0    0                 0
##      0.150208567676068                          0    0                 0
##      0.291704657263826                          0    0                 0
##      0.31263158525612                           0    0                 0
##      0.313581394222809                          0    0                 0
##      0.399450114450523                          0    0                 0
##      0.419739887455571                          0    0                 0
##      0.425358901761228                          0    0                 0
##      0.594035429893685                          0    0                 0
##      0.671638488556335                          0    0                 0
##      0.688092298985074                          0    0                 0
##      0.806600378227794                          0    0                 0
##      0.867455094638368                          0    0                 0
##      0.897003448844096                          0    0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.289583333333333 0.371527777777778
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.409722222222222 0.416666666666667 0.5 0.55625
##      0.000000000123720820519974                 0                 0   0       0
##      0.0000000142143709248919                   0                 0   0       0
##      0.0000000203570784591136                   0                 0   0       0
##      0.0000000942663046181582                   0                 0   0       0
##      0.0381424863643358                         0                 0   0       0
##      0.0395235614826762                         0                 0   0       0
##      0.0398504564629362                         0                 0   0       0
##      0.0449831541922517                         0                 0   0       0
##      0.150208567676068                          0                 0   0       0
##      0.291704657263826                          0                 0   0       0
##      0.31263158525612                           0                 0   0       0
##      0.313581394222809                          0                 0   0       0
##      0.399450114450523                          0                 0   0       0
##      0.419739887455571                          0                 0   0       0
##      0.425358901761228                          0                 0   0       0
##      0.594035429893685                          0                 0   0       0
##      0.671638488556335                          0                 0   0       0
##      0.688092298985074                          0                 0   0       0
##      0.806600378227794                          0                 0   0       0
##      0.867455094638368                          0                 0   0       0
##      0.897003448844096                          0                 0   0       0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.639583333333333 0.907785087701754 1
##      0.000000000123720820519974                 0                 0 0
##      0.0000000142143709248919                   0                 0 0
##      0.0000000203570784591136                   0                 0 0
##      0.0000000942663046181582                   0                 0 0
##      0.0381424863643358                         0                 0 0
##      0.0395235614826762                         0                 0 0
##      0.0398504564629362                         0                 0 0
##      0.0449831541922517                         0                 0 0
##      0.150208567676068                          0                 0 0
##      0.291704657263826                          0                 0 0
##      0.31263158525612                           0                 0 0
##      0.313581394222809                          0                 0 0
##      0.399450114450523                          0                 0 0
##      0.419739887455571                          0                 0 0
##      0.425358901761228                          0                 0 0
##      0.594035429893685                          0                 0 0
##      0.671638488556335                          0                 0 0
##      0.688092298985074                          0                 0 0
##      0.806600378227794                          0                 0 0
##      0.867455094638368                          0                 0 0
##      0.897003448844096                          0                 0 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 1.34930555555556 4.020833333 6.15
##      0.000000000123720820519974                0           0    0
##      0.0000000142143709248919                  0           0    0
##      0.0000000203570784591136                  0           0    0
##      0.0000000942663046181582                  0           0    0
##      0.0381424863643358                        0           0    0
##      0.0395235614826762                        0           0    0
##      0.0398504564629362                        0           0    0
##      0.0449831541922517                        0           0    0
##      0.150208567676068                         0           0    0
##      0.291704657263826                         0           0    0
##      0.31263158525612                          0           0    0
##      0.313581394222809                         0           0    0
##      0.399450114450523                         0           0    0
##      0.419739887455571                         0           0    0
##      0.425358901761228                         0           0    0
##      0.594035429893685                         0           0    0
##      0.671638488556335                         0           0    0
##      0.688092298985074                         0           0    0
##      0.806600378227794                         0           0    0
##      0.867455094638368                         0           0    0
##      0.897003448844096                         0           0    0
## 
## , , OTT_Time = 0.102777777777778, Snapchat_Time = 0, Instagram_Time = 0
## 
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.125 0.142361111111111 0.152777777777778
##      0.000000000123720820519974     0                 0                 0
##      0.0000000142143709248919       0                 0                 0
##      0.0000000203570784591136       0                 0                 0
##      0.0000000942663046181582       0                 0                 0
##      0.0381424863643358             0                 0                 0
##      0.0395235614826762             0                 0                 0
##      0.0398504564629362             0                 0                 0
##      0.0449831541922517             0                 0                 0
##      0.150208567676068              0                 0                 0
##      0.291704657263826              0                 0                 0
##      0.31263158525612               0                 0                 0
##      0.313581394222809              0                 0                 0
##      0.399450114450523              0                 0                 0
##      0.419739887455571              0                 0                 0
##      0.425358901761228              0                 0                 0
##      0.594035429893685              0                 0                 0
##      0.671638488556335              0                 0                 0
##      0.688092298985074              0                 0                 0
##      0.806600378227794              0                 0                 0
##      0.867455094638368              0                 0                 0
##      0.897003448844096              0                 0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.174305555555556 0.208333333333333
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.220833333333333 0.25 0.270833333333333
##      0.000000000123720820519974                 0    0                 0
##      0.0000000142143709248919                   0    0                 0
##      0.0000000203570784591136                   0    0                 0
##      0.0000000942663046181582                   0    0                 0
##      0.0381424863643358                         0    0                 0
##      0.0395235614826762                         0    0                 0
##      0.0398504564629362                         0    0                 0
##      0.0449831541922517                         0    0                 0
##      0.150208567676068                          0    0                 0
##      0.291704657263826                          0    0                 0
##      0.31263158525612                           0    0                 0
##      0.313581394222809                          0    0                 0
##      0.399450114450523                          0    0                 0
##      0.419739887455571                          0    0                 0
##      0.425358901761228                          0    0                 0
##      0.594035429893685                          0    0                 0
##      0.671638488556335                          0    0                 0
##      0.688092298985074                          0    0                 0
##      0.806600378227794                          0    0                 0
##      0.867455094638368                          0    0                 0
##      0.897003448844096                          0    0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.289583333333333 0.371527777777778
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.409722222222222 0.416666666666667 0.5 0.55625
##      0.000000000123720820519974                 0                 0   0       0
##      0.0000000142143709248919                   0                 0   0       0
##      0.0000000203570784591136                   0                 0   0       0
##      0.0000000942663046181582                   0                 0   0       0
##      0.0381424863643358                         0                 0   0       0
##      0.0395235614826762                         0                 0   0       0
##      0.0398504564629362                         0                 0   0       0
##      0.0449831541922517                         0                 0   0       0
##      0.150208567676068                          0                 0   0       0
##      0.291704657263826                          0                 0   0       0
##      0.31263158525612                           0                 0   0       0
##      0.313581394222809                          0                 0   0       0
##      0.399450114450523                          0                 0   0       0
##      0.419739887455571                          0                 0   0       0
##      0.425358901761228                          0                 0   0       0
##      0.594035429893685                          0                 0   0       0
##      0.671638488556335                          0                 0   0       0
##      0.688092298985074                          0                 0   0       0
##      0.806600378227794                          0                 0   0       0
##      0.867455094638368                          0                 0   0       0
##      0.897003448844096                          0                 0   0       0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.639583333333333 0.907785087701754 1
##      0.000000000123720820519974                 0                 0 0
##      0.0000000142143709248919                   0                 0 0
##      0.0000000203570784591136                   0                 0 0
##      0.0000000942663046181582                   0                 0 0
##      0.0381424863643358                         0                 0 0
##      0.0395235614826762                         0                 0 0
##      0.0398504564629362                         0                 0 0
##      0.0449831541922517                         0                 0 0
##      0.150208567676068                          0                 0 0
##      0.291704657263826                          0                 0 0
##      0.31263158525612                           0                 0 0
##      0.313581394222809                          0                 0 0
##      0.399450114450523                          0                 0 0
##      0.419739887455571                          0                 0 0
##      0.425358901761228                          0                 0 0
##      0.594035429893685                          0                 0 0
##      0.671638488556335                          0                 0 0
##      0.688092298985074                          0                 0 0
##      0.806600378227794                          0                 0 0
##      0.867455094638368                          0                 0 0
##      0.897003448844096                          0                 0 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 1.34930555555556 4.020833333 6.15
##      0.000000000123720820519974                0           0    0
##      0.0000000142143709248919                  0           0    0
##      0.0000000203570784591136                  0           0    0
##      0.0000000942663046181582                  0           0    0
##      0.0381424863643358                        0           0    0
##      0.0395235614826762                        0           0    0
##      0.0398504564629362                        0           0    0
##      0.0449831541922517                        0           0    0
##      0.150208567676068                         0           0    0
##      0.291704657263826                         0           0    0
##      0.31263158525612                          0           0    0
##      0.313581394222809                         0           0    0
##      0.399450114450523                         0           0    0
##      0.419739887455571                         0           0    0
##      0.425358901761228                         0           0    0
##      0.594035429893685                         0           0    0
##      0.671638488556335                         0           0    0
##      0.688092298985074                         0           0    0
##      0.806600378227794                         0           0    0
##      0.867455094638368                         0           0    0
##      0.897003448844096                         0           0    0
## 
## , , OTT_Time = 0.125, Snapchat_Time = 0, Instagram_Time = 0
## 
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.125 0.142361111111111 0.152777777777778
##      0.000000000123720820519974     0                 0                 0
##      0.0000000142143709248919       0                 0                 0
##      0.0000000203570784591136       0                 0                 0
##      0.0000000942663046181582       0                 0                 0
##      0.0381424863643358             0                 0                 0
##      0.0395235614826762             0                 0                 0
##      0.0398504564629362             0                 0                 0
##      0.0449831541922517             0                 0                 0
##      0.150208567676068              0                 0                 0
##      0.291704657263826              0                 0                 0
##      0.31263158525612               0                 0                 0
##      0.313581394222809              0                 0                 0
##      0.399450114450523              0                 0                 0
##      0.419739887455571              0                 0                 0
##      0.425358901761228              0                 0                 0
##      0.594035429893685              0                 0                 0
##      0.671638488556335              0                 0                 0
##      0.688092298985074              0                 0                 0
##      0.806600378227794              0                 0                 0
##      0.867455094638368              0                 0                 0
##      0.897003448844096              0                 0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.174305555555556 0.208333333333333
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.220833333333333 0.25 0.270833333333333
##      0.000000000123720820519974                 0    0                 0
##      0.0000000142143709248919                   0    0                 0
##      0.0000000203570784591136                   0    0                 0
##      0.0000000942663046181582                   0    0                 0
##      0.0381424863643358                         0    0                 0
##      0.0395235614826762                         0    0                 0
##      0.0398504564629362                         0    0                 0
##      0.0449831541922517                         0    0                 0
##      0.150208567676068                          0    0                 0
##      0.291704657263826                          0    0                 0
##      0.31263158525612                           0    0                 0
##      0.313581394222809                          0    0                 0
##      0.399450114450523                          0    0                 0
##      0.419739887455571                          0    0                 0
##      0.425358901761228                          0    0                 0
##      0.594035429893685                          0    0                 0
##      0.671638488556335                          0    0                 0
##      0.688092298985074                          0    0                 0
##      0.806600378227794                          0    0                 0
##      0.867455094638368                          0    0                 0
##      0.897003448844096                          0    0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.289583333333333 0.371527777777778
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.409722222222222 0.416666666666667 0.5 0.55625
##      0.000000000123720820519974                 0                 0   0       0
##      0.0000000142143709248919                   0                 0   0       0
##      0.0000000203570784591136                   0                 0   0       0
##      0.0000000942663046181582                   0                 0   0       0
##      0.0381424863643358                         0                 0   0       0
##      0.0395235614826762                         0                 0   0       0
##      0.0398504564629362                         0                 0   0       0
##      0.0449831541922517                         0                 0   0       0
##      0.150208567676068                          0                 0   0       0
##      0.291704657263826                          0                 0   0       0
##      0.31263158525612                           0                 0   0       0
##      0.313581394222809                          0                 0   0       0
##      0.399450114450523                          0                 0   0       0
##      0.419739887455571                          0                 0   0       0
##      0.425358901761228                          0                 0   0       0
##      0.594035429893685                          0                 0   0       0
##      0.671638488556335                          0                 0   0       0
##      0.688092298985074                          0                 0   0       0
##      0.806600378227794                          0                 0   0       0
##      0.867455094638368                          0                 0   0       0
##      0.897003448844096                          0                 0   0       0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.639583333333333 0.907785087701754 1
##      0.000000000123720820519974                 0                 0 0
##      0.0000000142143709248919                   0                 0 0
##      0.0000000203570784591136                   0                 0 0
##      0.0000000942663046181582                   0                 0 0
##      0.0381424863643358                         0                 0 0
##      0.0395235614826762                         0                 0 0
##      0.0398504564629362                         0                 0 0
##      0.0449831541922517                         0                 0 0
##      0.150208567676068                          0                 0 0
##      0.291704657263826                          0                 0 0
##      0.31263158525612                           0                 0 0
##      0.313581394222809                          0                 0 0
##      0.399450114450523                          0                 0 0
##      0.419739887455571                          0                 0 0
##      0.425358901761228                          0                 0 0
##      0.594035429893685                          0                 0 0
##      0.671638488556335                          0                 0 0
##      0.688092298985074                          0                 0 0
##      0.806600378227794                          0                 0 0
##      0.867455094638368                          0                 0 0
##      0.897003448844096                          0                 0 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 1.34930555555556 4.020833333 6.15
##      0.000000000123720820519974                0           0    0
##      0.0000000142143709248919                  0           0    0
##      0.0000000203570784591136                  0           0    0
##      0.0000000942663046181582                  0           0    0
##      0.0381424863643358                        0           0    0
##      0.0395235614826762                        0           0    0
##      0.0398504564629362                        0           0    0
##      0.0449831541922517                        0           0    0
##      0.150208567676068                         0           0    0
##      0.291704657263826                         0           0    0
##      0.31263158525612                          0           0    0
##      0.313581394222809                         0           0    0
##      0.399450114450523                         0           0    0
##      0.419739887455571                         0           0    0
##      0.425358901761228                         0           0    0
##      0.594035429893685                         0           0    0
##      0.671638488556335                         0           0    0
##      0.688092298985074                         0           0    0
##      0.806600378227794                         0           0    0
##      0.867455094638368                         0           0    0
##      0.897003448844096                         0           0    0
## 
## , , OTT_Time = 0.416666666666667, Snapchat_Time = 0, Instagram_Time = 0
## 
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.125 0.142361111111111 0.152777777777778
##      0.000000000123720820519974     0                 0                 0
##      0.0000000142143709248919       0                 0                 0
##      0.0000000203570784591136       0                 0                 0
##      0.0000000942663046181582       0                 0                 0
##      0.0381424863643358             0                 0                 0
##      0.0395235614826762             0                 0                 0
##      0.0398504564629362             0                 0                 0
##      0.0449831541922517             0                 0                 0
##      0.150208567676068              0                 0                 0
##      0.291704657263826              0                 0                 0
##      0.31263158525612               0                 0                 0
##      0.313581394222809              0                 0                 0
##      0.399450114450523              0                 0                 0
##      0.419739887455571              0                 0                 0
##      0.425358901761228              0                 0                 0
##      0.594035429893685              0                 0                 0
##      0.671638488556335              0                 0                 0
##      0.688092298985074              0                 0                 0
##      0.806600378227794              0                 0                 0
##      0.867455094638368              0                 0                 0
##      0.897003448844096              0                 0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.174305555555556 0.208333333333333
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.220833333333333 0.25 0.270833333333333
##      0.000000000123720820519974                 0    0                 0
##      0.0000000142143709248919                   0    0                 0
##      0.0000000203570784591136                   0    0                 0
##      0.0000000942663046181582                   0    0                 0
##      0.0381424863643358                         0    0                 0
##      0.0395235614826762                         0    0                 0
##      0.0398504564629362                         0    0                 0
##      0.0449831541922517                         0    0                 0
##      0.150208567676068                          0    0                 0
##      0.291704657263826                          0    0                 0
##      0.31263158525612                           0    0                 0
##      0.313581394222809                          0    0                 0
##      0.399450114450523                          0    0                 0
##      0.419739887455571                          0    0                 0
##      0.425358901761228                          0    0                 0
##      0.594035429893685                          0    0                 0
##      0.671638488556335                          0    0                 0
##      0.688092298985074                          0    0                 0
##      0.806600378227794                          0    0                 0
##      0.867455094638368                          0    0                 0
##      0.897003448844096                          0    0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.289583333333333 0.371527777777778
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.409722222222222 0.416666666666667 0.5 0.55625
##      0.000000000123720820519974                 0                 0   0       0
##      0.0000000142143709248919                   0                 0   0       0
##      0.0000000203570784591136                   0                 0   0       0
##      0.0000000942663046181582                   0                 0   0       0
##      0.0381424863643358                         0                 0   0       0
##      0.0395235614826762                         0                 0   0       0
##      0.0398504564629362                         0                 0   0       0
##      0.0449831541922517                         0                 0   0       0
##      0.150208567676068                          0                 0   0       0
##      0.291704657263826                          0                 0   0       0
##      0.31263158525612                           0                 0   0       0
##      0.313581394222809                          0                 0   0       0
##      0.399450114450523                          0                 0   0       0
##      0.419739887455571                          0                 0   0       0
##      0.425358901761228                          0                 0   0       0
##      0.594035429893685                          0                 0   0       0
##      0.671638488556335                          0                 0   0       0
##      0.688092298985074                          0                 0   0       0
##      0.806600378227794                          0                 0   0       0
##      0.867455094638368                          0                 0   0       0
##      0.897003448844096                          0                 0   0       0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.639583333333333 0.907785087701754 1
##      0.000000000123720820519974                 0                 0 0
##      0.0000000142143709248919                   0                 0 0
##      0.0000000203570784591136                   0                 0 0
##      0.0000000942663046181582                   0                 0 0
##      0.0381424863643358                         0                 0 0
##      0.0395235614826762                         0                 0 0
##      0.0398504564629362                         0                 0 0
##      0.0449831541922517                         0                 0 0
##      0.150208567676068                          0                 0 0
##      0.291704657263826                          0                 0 0
##      0.31263158525612                           0                 0 0
##      0.313581394222809                          0                 0 0
##      0.399450114450523                          0                 0 0
##      0.419739887455571                          0                 0 0
##      0.425358901761228                          0                 0 0
##      0.594035429893685                          0                 0 0
##      0.671638488556335                          0                 0 0
##      0.688092298985074                          0                 0 0
##      0.806600378227794                          0                 0 0
##      0.867455094638368                          0                 0 0
##      0.897003448844096                          0                 0 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 1.34930555555556 4.020833333 6.15
##      0.000000000123720820519974                0           0    0
##      0.0000000142143709248919                  0           0    0
##      0.0000000203570784591136                  0           0    0
##      0.0000000942663046181582                  0           0    0
##      0.0381424863643358                        0           0    0
##      0.0395235614826762                        0           0    0
##      0.0398504564629362                        0           0    0
##      0.0449831541922517                        0           0    0
##      0.150208567676068                         0           0    0
##      0.291704657263826                         0           0    0
##      0.31263158525612                          0           0    0
##      0.313581394222809                         0           0    0
##      0.399450114450523                         0           0    0
##      0.419739887455571                         0           0    0
##      0.425358901761228                         0           0    0
##      0.594035429893685                         0           0    0
##      0.671638488556335                         0           0    0
##      0.688092298985074                         0           0    0
##      0.806600378227794                         0           0    0
##      0.867455094638368                         0           0    0
##      0.897003448844096                         0           0    0
## 
## , , OTT_Time = 0.5104166667, Snapchat_Time = 0, Instagram_Time = 0
## 
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.125 0.142361111111111 0.152777777777778
##      0.000000000123720820519974     0                 0                 0
##      0.0000000142143709248919       0                 0                 0
##      0.0000000203570784591136       0                 0                 0
##      0.0000000942663046181582       0                 0                 0
##      0.0381424863643358             0                 0                 0
##      0.0395235614826762             0                 0                 0
##      0.0398504564629362             0                 0                 0
##      0.0449831541922517             0                 0                 0
##      0.150208567676068              0                 0                 0
##      0.291704657263826              0                 0                 0
##      0.31263158525612               0                 0                 0
##      0.313581394222809              0                 0                 0
##      0.399450114450523              0                 0                 0
##      0.419739887455571              0                 0                 0
##      0.425358901761228              0                 0                 0
##      0.594035429893685              0                 0                 0
##      0.671638488556335              0                 0                 0
##      0.688092298985074              0                 0                 0
##      0.806600378227794              0                 0                 0
##      0.867455094638368              0                 0                 0
##      0.897003448844096              0                 0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.174305555555556 0.208333333333333
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.220833333333333 0.25 0.270833333333333
##      0.000000000123720820519974                 0    0                 0
##      0.0000000142143709248919                   0    0                 0
##      0.0000000203570784591136                   0    0                 0
##      0.0000000942663046181582                   0    0                 0
##      0.0381424863643358                         0    0                 0
##      0.0395235614826762                         0    0                 0
##      0.0398504564629362                         0    0                 0
##      0.0449831541922517                         0    0                 0
##      0.150208567676068                          0    0                 0
##      0.291704657263826                          0    0                 0
##      0.31263158525612                           0    0                 0
##      0.313581394222809                          0    0                 0
##      0.399450114450523                          0    0                 0
##      0.419739887455571                          0    0                 0
##      0.425358901761228                          0    0                 0
##      0.594035429893685                          0    0                 0
##      0.671638488556335                          0    0                 0
##      0.688092298985074                          0    0                 0
##      0.806600378227794                          0    0                 0
##      0.867455094638368                          0    0                 0
##      0.897003448844096                          0    0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.289583333333333 0.371527777777778
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.409722222222222 0.416666666666667 0.5 0.55625
##      0.000000000123720820519974                 0                 0   0       0
##      0.0000000142143709248919                   0                 0   0       0
##      0.0000000203570784591136                   0                 0   0       0
##      0.0000000942663046181582                   0                 0   0       0
##      0.0381424863643358                         0                 0   0       0
##      0.0395235614826762                         0                 0   0       0
##      0.0398504564629362                         0                 0   0       0
##      0.0449831541922517                         0                 0   0       0
##      0.150208567676068                          0                 0   0       0
##      0.291704657263826                          0                 0   0       0
##      0.31263158525612                           0                 0   0       0
##      0.313581394222809                          0                 0   0       0
##      0.399450114450523                          0                 0   0       0
##      0.419739887455571                          0                 0   0       0
##      0.425358901761228                          0                 0   0       0
##      0.594035429893685                          0                 0   0       0
##      0.671638488556335                          0                 0   0       0
##      0.688092298985074                          0                 0   0       0
##      0.806600378227794                          0                 0   0       0
##      0.867455094638368                          0                 0   0       0
##      0.897003448844096                          0                 0   0       0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.639583333333333 0.907785087701754 1
##      0.000000000123720820519974                 0                 0 0
##      0.0000000142143709248919                   0                 0 0
##      0.0000000203570784591136                   0                 0 0
##      0.0000000942663046181582                   0                 0 0
##      0.0381424863643358                         0                 0 0
##      0.0395235614826762                         0                 0 0
##      0.0398504564629362                         0                 0 0
##      0.0449831541922517                         0                 0 0
##      0.150208567676068                          0                 0 0
##      0.291704657263826                          0                 0 0
##      0.31263158525612                           0                 0 0
##      0.313581394222809                          0                 0 0
##      0.399450114450523                          0                 0 0
##      0.419739887455571                          0                 0 0
##      0.425358901761228                          0                 0 0
##      0.594035429893685                          0                 0 0
##      0.671638488556335                          0                 0 0
##      0.688092298985074                          0                 0 0
##      0.806600378227794                          0                 0 0
##      0.867455094638368                          0                 0 0
##      0.897003448844096                          0                 0 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 1.34930555555556 4.020833333 6.15
##      0.000000000123720820519974                0           0    0
##      0.0000000142143709248919                  0           0    0
##      0.0000000203570784591136                  0           0    0
##      0.0000000942663046181582                  0           0    0
##      0.0381424863643358                        0           0    0
##      0.0395235614826762                        0           0    0
##      0.0398504564629362                        0           0    0
##      0.0449831541922517                        0           0    0
##      0.150208567676068                         0           0    0
##      0.291704657263826                         0           0    0
##      0.31263158525612                          0           0    0
##      0.313581394222809                         0           0    0
##      0.399450114450523                         0           0    0
##      0.419739887455571                         0           0    0
##      0.425358901761228                         0           0    0
##      0.594035429893685                         0           0    0
##      0.671638488556335                         0           0    0
##      0.688092298985074                         0           0    0
##      0.806600378227794                         0           0    0
##      0.867455094638368                         0           0    0
##      0.897003448844096                         0           0    0
## 
## , , OTT_Time = 1.44460470085726, Snapchat_Time = 0, Instagram_Time = 0
## 
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.125 0.142361111111111 0.152777777777778
##      0.000000000123720820519974     0                 0                 0
##      0.0000000142143709248919       0                 0                 0
##      0.0000000203570784591136       0                 0                 0
##      0.0000000942663046181582       0                 0                 0
##      0.0381424863643358             0                 0                 0
##      0.0395235614826762             0                 0                 0
##      0.0398504564629362             0                 0                 0
##      0.0449831541922517             0                 0                 0
##      0.150208567676068              0                 0                 0
##      0.291704657263826              0                 0                 0
##      0.31263158525612               0                 0                 0
##      0.313581394222809              0                 0                 0
##      0.399450114450523              0                 0                 0
##      0.419739887455571              0                 0                 0
##      0.425358901761228              0                 0                 0
##      0.594035429893685              1                 0                 0
##      0.671638488556335              0                 0                 0
##      0.688092298985074              0                 0                 0
##      0.806600378227794              0                 0                 0
##      0.867455094638368              0                 0                 0
##      0.897003448844096              0                 0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.174305555555556 0.208333333333333
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.220833333333333 0.25 0.270833333333333
##      0.000000000123720820519974                 0    0                 0
##      0.0000000142143709248919                   0    0                 0
##      0.0000000203570784591136                   0    0                 0
##      0.0000000942663046181582                   0    0                 0
##      0.0381424863643358                         0    0                 0
##      0.0395235614826762                         0    0                 0
##      0.0398504564629362                         0    0                 0
##      0.0449831541922517                         0    0                 0
##      0.150208567676068                          0    0                 0
##      0.291704657263826                          0    0                 0
##      0.31263158525612                           0    0                 0
##      0.313581394222809                          0    0                 0
##      0.399450114450523                          0    0                 0
##      0.419739887455571                          0    0                 0
##      0.425358901761228                          0    0                 0
##      0.594035429893685                          0    0                 0
##      0.671638488556335                          0    0                 0
##      0.688092298985074                          0    0                 0
##      0.806600378227794                          0    0                 0
##      0.867455094638368                          0    0                 0
##      0.897003448844096                          0    0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.289583333333333 0.371527777777778
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.409722222222222 0.416666666666667 0.5 0.55625
##      0.000000000123720820519974                 0                 0   0       0
##      0.0000000142143709248919                   0                 0   0       0
##      0.0000000203570784591136                   0                 0   0       0
##      0.0000000942663046181582                   0                 0   0       0
##      0.0381424863643358                         0                 0   0       0
##      0.0395235614826762                         0                 0   0       0
##      0.0398504564629362                         0                 0   0       0
##      0.0449831541922517                         0                 0   0       0
##      0.150208567676068                          0                 0   0       0
##      0.291704657263826                          0                 0   0       0
##      0.31263158525612                           0                 0   0       0
##      0.313581394222809                          0                 0   0       0
##      0.399450114450523                          0                 0   0       0
##      0.419739887455571                          0                 0   0       0
##      0.425358901761228                          0                 0   0       0
##      0.594035429893685                          0                 0   0       0
##      0.671638488556335                          0                 0   0       0
##      0.688092298985074                          0                 0   0       0
##      0.806600378227794                          0                 0   0       0
##      0.867455094638368                          0                 0   0       0
##      0.897003448844096                          0                 0   0       0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.639583333333333 0.907785087701754 1
##      0.000000000123720820519974                 0                 0 0
##      0.0000000142143709248919                   0                 0 0
##      0.0000000203570784591136                   0                 0 0
##      0.0000000942663046181582                   0                 0 0
##      0.0381424863643358                         0                 0 0
##      0.0395235614826762                         0                 0 0
##      0.0398504564629362                         0                 0 0
##      0.0449831541922517                         0                 0 0
##      0.150208567676068                          0                 0 0
##      0.291704657263826                          0                 0 0
##      0.31263158525612                           0                 0 0
##      0.313581394222809                          0                 0 0
##      0.399450114450523                          0                 0 0
##      0.419739887455571                          0                 0 0
##      0.425358901761228                          0                 0 0
##      0.594035429893685                          0                 0 0
##      0.671638488556335                          0                 0 0
##      0.688092298985074                          0                 0 0
##      0.806600378227794                          0                 0 0
##      0.867455094638368                          0                 0 0
##      0.897003448844096                          0                 0 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 1.34930555555556 4.020833333 6.15
##      0.000000000123720820519974                0           0    0
##      0.0000000142143709248919                  0           0    0
##      0.0000000203570784591136                  0           0    0
##      0.0000000942663046181582                  0           0    0
##      0.0381424863643358                        0           0    0
##      0.0395235614826762                        0           0    0
##      0.0398504564629362                        0           0    0
##      0.0449831541922517                        0           0    0
##      0.150208567676068                         0           0    0
##      0.291704657263826                         0           0    0
##      0.31263158525612                          0           0    0
##      0.313581394222809                         0           0    0
##      0.399450114450523                         0           0    0
##      0.419739887455571                         0           0    0
##      0.425358901761228                         0           0    0
##      0.594035429893685                         0           0    0
##      0.671638488556335                         0           0    0
##      0.688092298985074                         0           0    0
##      0.806600378227794                         0           0    0
##      0.867455094638368                         0           0    0
##      0.897003448844096                         0           0    0
## 
## , , OTT_Time = 3, Snapchat_Time = 0, Instagram_Time = 0
## 
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.125 0.142361111111111 0.152777777777778
##      0.000000000123720820519974     0                 0                 0
##      0.0000000142143709248919       0                 0                 0
##      0.0000000203570784591136       0                 0                 0
##      0.0000000942663046181582       0                 0                 0
##      0.0381424863643358             0                 0                 0
##      0.0395235614826762             0                 0                 0
##      0.0398504564629362             0                 0                 0
##      0.0449831541922517             0                 0                 0
##      0.150208567676068              0                 0                 0
##      0.291704657263826              0                 0                 0
##      0.31263158525612               0                 0                 0
##      0.313581394222809              0                 0                 0
##      0.399450114450523              0                 0                 0
##      0.419739887455571              0                 0                 0
##      0.425358901761228              0                 0                 0
##      0.594035429893685              0                 0                 0
##      0.671638488556335              0                 0                 0
##      0.688092298985074              0                 0                 0
##      0.806600378227794              0                 0                 0
##      0.867455094638368              0                 0                 0
##      0.897003448844096              0                 0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.174305555555556 0.208333333333333
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.220833333333333 0.25 0.270833333333333
##      0.000000000123720820519974                 0    0                 0
##      0.0000000142143709248919                   0    0                 0
##      0.0000000203570784591136                   0    0                 0
##      0.0000000942663046181582                   0    0                 0
##      0.0381424863643358                         0    0                 0
##      0.0395235614826762                         0    0                 0
##      0.0398504564629362                         0    0                 0
##      0.0449831541922517                         0    0                 0
##      0.150208567676068                          0    0                 0
##      0.291704657263826                          0    0                 0
##      0.31263158525612                           0    0                 0
##      0.313581394222809                          0    0                 0
##      0.399450114450523                          0    0                 0
##      0.419739887455571                          0    0                 0
##      0.425358901761228                          0    0                 0
##      0.594035429893685                          0    0                 0
##      0.671638488556335                          0    0                 0
##      0.688092298985074                          0    0                 0
##      0.806600378227794                          0    0                 0
##      0.867455094638368                          0    0                 0
##      0.897003448844096                          0    0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.289583333333333 0.371527777777778
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.409722222222222 0.416666666666667 0.5 0.55625
##      0.000000000123720820519974                 0                 0   0       0
##      0.0000000142143709248919                   0                 0   0       0
##      0.0000000203570784591136                   0                 0   0       0
##      0.0000000942663046181582                   0                 0   0       0
##      0.0381424863643358                         0                 0   0       0
##      0.0395235614826762                         0                 0   0       0
##      0.0398504564629362                         0                 0   0       0
##      0.0449831541922517                         0                 0   0       0
##      0.150208567676068                          0                 0   0       0
##      0.291704657263826                          0                 0   0       0
##      0.31263158525612                           0                 0   0       0
##      0.313581394222809                          0                 0   0       0
##      0.399450114450523                          0                 0   0       0
##      0.419739887455571                          0                 0   0       0
##      0.425358901761228                          0                 0   0       0
##      0.594035429893685                          0                 0   0       0
##      0.671638488556335                          0                 0   0       0
##      0.688092298985074                          0                 0   0       0
##      0.806600378227794                          0                 0   0       0
##      0.867455094638368                          0                 0   0       0
##      0.897003448844096                          0                 0   0       0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.639583333333333 0.907785087701754 1
##      0.000000000123720820519974                 0                 0 0
##      0.0000000142143709248919                   0                 0 0
##      0.0000000203570784591136                   0                 0 0
##      0.0000000942663046181582                   0                 0 0
##      0.0381424863643358                         0                 0 0
##      0.0395235614826762                         0                 0 0
##      0.0398504564629362                         0                 0 0
##      0.0449831541922517                         0                 0 0
##      0.150208567676068                          0                 0 0
##      0.291704657263826                          0                 0 0
##      0.31263158525612                           0                 0 0
##      0.313581394222809                          0                 0 0
##      0.399450114450523                          0                 0 0
##      0.419739887455571                          0                 0 0
##      0.425358901761228                          0                 0 0
##      0.594035429893685                          0                 0 0
##      0.671638488556335                          0                 0 0
##      0.688092298985074                          0                 0 0
##      0.806600378227794                          0                 0 0
##      0.867455094638368                          0                 0 0
##      0.897003448844096                          0                 0 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 1.34930555555556 4.020833333 6.15
##      0.000000000123720820519974                0           0    0
##      0.0000000142143709248919                  0           0    0
##      0.0000000203570784591136                  0           0    0
##      0.0000000942663046181582                  0           0    0
##      0.0381424863643358                        0           0    0
##      0.0395235614826762                        0           0    0
##      0.0398504564629362                        0           0    0
##      0.0449831541922517                        0           0    0
##      0.150208567676068                         0           0    0
##      0.291704657263826                         0           0    0
##      0.31263158525612                          0           0    0
##      0.313581394222809                         0           0    0
##      0.399450114450523                         0           0    0
##      0.419739887455571                         0           0    0
##      0.425358901761228                         0           0    0
##      0.594035429893685                         0           0    0
##      0.671638488556335                         0           0    0
##      0.688092298985074                         0           0    0
##      0.806600378227794                         0           0    0
##      0.867455094638368                         0           0    0
##      0.897003448844096                         0           0    0
## 
## , , OTT_Time = 14.5, Snapchat_Time = 0, Instagram_Time = 0
## 
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.125 0.142361111111111 0.152777777777778
##      0.000000000123720820519974     0                 0                 0
##      0.0000000142143709248919       0                 0                 0
##      0.0000000203570784591136       0                 0                 0
##      0.0000000942663046181582       0                 0                 0
##      0.0381424863643358             0                 0                 0
##      0.0395235614826762             0                 0                 0
##      0.0398504564629362             0                 0                 0
##      0.0449831541922517             0                 0                 0
##      0.150208567676068              0                 0                 0
##      0.291704657263826              0                 0                 0
##      0.31263158525612               0                 0                 0
##      0.313581394222809              0                 0                 0
##      0.399450114450523              0                 0                 0
##      0.419739887455571              0                 0                 0
##      0.425358901761228              0                 0                 0
##      0.594035429893685              0                 0                 0
##      0.671638488556335              0                 0                 0
##      0.688092298985074              0                 0                 0
##      0.806600378227794              0                 0                 0
##      0.867455094638368              0                 0                 0
##      0.897003448844096              0                 0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.174305555555556 0.208333333333333
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.220833333333333 0.25 0.270833333333333
##      0.000000000123720820519974                 0    0                 0
##      0.0000000142143709248919                   0    0                 0
##      0.0000000203570784591136                   0    0                 0
##      0.0000000942663046181582                   0    0                 0
##      0.0381424863643358                         0    0                 0
##      0.0395235614826762                         0    0                 0
##      0.0398504564629362                         0    0                 0
##      0.0449831541922517                         0    0                 0
##      0.150208567676068                          0    0                 0
##      0.291704657263826                          0    0                 0
##      0.31263158525612                           0    0                 0
##      0.313581394222809                          0    0                 0
##      0.399450114450523                          0    0                 0
##      0.419739887455571                          0    0                 0
##      0.425358901761228                          0    0                 0
##      0.594035429893685                          0    0                 0
##      0.671638488556335                          0    0                 0
##      0.688092298985074                          0    0                 0
##      0.806600378227794                          0    0                 0
##      0.867455094638368                          0    0                 0
##      0.897003448844096                          0    0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.289583333333333 0.371527777777778
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.409722222222222 0.416666666666667 0.5 0.55625
##      0.000000000123720820519974                 0                 0   0       0
##      0.0000000142143709248919                   0                 0   0       0
##      0.0000000203570784591136                   0                 0   0       0
##      0.0000000942663046181582                   0                 0   0       0
##      0.0381424863643358                         0                 0   0       0
##      0.0395235614826762                         0                 0   0       0
##      0.0398504564629362                         0                 0   0       0
##      0.0449831541922517                         0                 0   0       0
##      0.150208567676068                          0                 0   0       0
##      0.291704657263826                          0                 0   0       0
##      0.31263158525612                           0                 0   0       0
##      0.313581394222809                          0                 0   0       0
##      0.399450114450523                          0                 0   0       0
##      0.419739887455571                          0                 0   0       0
##      0.425358901761228                          0                 0   0       0
##      0.594035429893685                          0                 0   0       0
##      0.671638488556335                          0                 0   0       0
##      0.688092298985074                          0                 0   0       0
##      0.806600378227794                          0                 0   0       0
##      0.867455094638368                          0                 0   0       0
##      0.897003448844096                          0                 0   0       0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.639583333333333 0.907785087701754 1
##      0.000000000123720820519974                 0                 0 0
##      0.0000000142143709248919                   0                 0 0
##      0.0000000203570784591136                   0                 0 0
##      0.0000000942663046181582                   0                 0 0
##      0.0381424863643358                         0                 0 0
##      0.0395235614826762                         0                 0 0
##      0.0398504564629362                         0                 0 0
##      0.0449831541922517                         0                 0 0
##      0.150208567676068                          0                 0 0
##      0.291704657263826                          0                 0 0
##      0.31263158525612                           0                 0 0
##      0.313581394222809                          0                 0 0
##      0.399450114450523                          0                 0 0
##      0.419739887455571                          0                 0 0
##      0.425358901761228                          0                 0 0
##      0.594035429893685                          0                 0 0
##      0.671638488556335                          0                 0 0
##      0.688092298985074                          0                 0 0
##      0.806600378227794                          0                 0 0
##      0.867455094638368                          0                 0 0
##      0.897003448844096                          0                 0 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 1.34930555555556 4.020833333 6.15
##      0.000000000123720820519974                0           0    0
##      0.0000000142143709248919                  0           0    0
##      0.0000000203570784591136                  0           0    0
##      0.0000000942663046181582                  0           0    0
##      0.0381424863643358                        0           0    0
##      0.0395235614826762                        0           0    0
##      0.0398504564629362                        0           0    0
##      0.0449831541922517                        0           0    0
##      0.150208567676068                         0           0    0
##      0.291704657263826                         0           0    0
##      0.31263158525612                          0           0    0
##      0.313581394222809                         0           0    0
##      0.399450114450523                         0           0    0
##      0.419739887455571                         0           0    0
##      0.425358901761228                         0           0    0
##      0.594035429893685                         0           0    0
##      0.671638488556335                         0           0    0
##      0.688092298985074                         0           0    0
##      0.806600378227794                         0           0    0
##      0.867455094638368                         0           0    0
##      0.897003448844096                         0           0    0
## 
## , , OTT_Time = 0, Snapchat_Time = 0.125, Instagram_Time = 0
## 
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.125 0.142361111111111 0.152777777777778
##      0.000000000123720820519974     0                 0                 0
##      0.0000000142143709248919       0                 0                 0
##      0.0000000203570784591136       0                 0                 0
##      0.0000000942663046181582       0                 0                 0
##      0.0381424863643358             0                 0                 0
##      0.0395235614826762             0                 0                 0
##      0.0398504564629362             0                 0                 0
##      0.0449831541922517             0                 0                 0
##      0.150208567676068              0                 0                 0
##      0.291704657263826              0                 0                 0
##      0.31263158525612               0                 0                 0
##      0.313581394222809              0                 0                 0
##      0.399450114450523              0                 0                 0
##      0.419739887455571              0                 0                 0
##      0.425358901761228              0                 0                 0
##      0.594035429893685              0                 0                 0
##      0.671638488556335              0                 0                 0
##      0.688092298985074              0                 0                 0
##      0.806600378227794              0                 0                 0
##      0.867455094638368              0                 0                 0
##      0.897003448844096              0                 0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.174305555555556 0.208333333333333
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.220833333333333 0.25 0.270833333333333
##      0.000000000123720820519974                 0    0                 0
##      0.0000000142143709248919                   0    0                 0
##      0.0000000203570784591136                   0    0                 0
##      0.0000000942663046181582                   0    0                 0
##      0.0381424863643358                         0    0                 0
##      0.0395235614826762                         0    0                 0
##      0.0398504564629362                         0    0                 0
##      0.0449831541922517                         0    0                 0
##      0.150208567676068                          0    0                 0
##      0.291704657263826                          0    0                 0
##      0.31263158525612                           0    0                 0
##      0.313581394222809                          0    0                 0
##      0.399450114450523                          0    0                 0
##      0.419739887455571                          0    0                 0
##      0.425358901761228                          0    0                 0
##      0.594035429893685                          0    0                 0
##      0.671638488556335                          0    0                 0
##      0.688092298985074                          0    0                 0
##      0.806600378227794                          0    0                 0
##      0.867455094638368                          0    0                 0
##      0.897003448844096                          0    0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.289583333333333 0.371527777777778
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.409722222222222 0.416666666666667 0.5 0.55625
##      0.000000000123720820519974                 0                 0   0       0
##      0.0000000142143709248919                   0                 0   0       0
##      0.0000000203570784591136                   0                 0   0       0
##      0.0000000942663046181582                   0                 0   0       0
##      0.0381424863643358                         0                 0   0       0
##      0.0395235614826762                         0                 0   0       0
##      0.0398504564629362                         0                 0   0       0
##      0.0449831541922517                         0                 0   0       0
##      0.150208567676068                          0                 0   0       0
##      0.291704657263826                          0                 0   0       0
##      0.31263158525612                           0                 0   0       0
##      0.313581394222809                          0                 0   0       0
##      0.399450114450523                          0                 0   0       0
##      0.419739887455571                          0                 0   0       0
##      0.425358901761228                          0                 0   0       0
##      0.594035429893685                          0                 0   0       0
##      0.671638488556335                          0                 0   0       0
##      0.688092298985074                          0                 0   0       0
##      0.806600378227794                          0                 0   0       0
##      0.867455094638368                          0                 0   0       0
##      0.897003448844096                          0                 0   0       0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.639583333333333 0.907785087701754 1
##      0.000000000123720820519974                 0                 0 0
##      0.0000000142143709248919                   0                 0 0
##      0.0000000203570784591136                   0                 0 0
##      0.0000000942663046181582                   0                 0 0
##      0.0381424863643358                         0                 0 0
##      0.0395235614826762                         0                 0 0
##      0.0398504564629362                         0                 0 0
##      0.0449831541922517                         0                 0 0
##      0.150208567676068                          0                 0 0
##      0.291704657263826                          0                 0 0
##      0.31263158525612                           0                 0 0
##      0.313581394222809                          0                 0 0
##      0.399450114450523                          0                 0 0
##      0.419739887455571                          0                 0 0
##      0.425358901761228                          0                 0 0
##      0.594035429893685                          0                 0 0
##      0.671638488556335                          0                 0 0
##      0.688092298985074                          0                 0 0
##      0.806600378227794                          0                 0 0
##      0.867455094638368                          0                 0 0
##      0.897003448844096                          0                 0 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 1.34930555555556 4.020833333 6.15
##      0.000000000123720820519974                0           0    0
##      0.0000000142143709248919                  0           0    0
##      0.0000000203570784591136                  0           0    0
##      0.0000000942663046181582                  0           0    0
##      0.0381424863643358                        0           0    0
##      0.0395235614826762                        0           0    0
##      0.0398504564629362                        0           0    0
##      0.0449831541922517                        0           0    0
##      0.150208567676068                         0           0    0
##      0.291704657263826                         0           0    0
##      0.31263158525612                          0           0    0
##      0.313581394222809                         0           0    0
##      0.399450114450523                         0           0    0
##      0.419739887455571                         0           0    0
##      0.425358901761228                         0           0    0
##      0.594035429893685                         0           0    0
##      0.671638488556335                         0           0    0
##      0.688092298985074                         0           0    0
##      0.806600378227794                         0           0    0
##      0.867455094638368                         0           0    0
##      0.897003448844096                         0           0    0
## 
## , , OTT_Time = 0.102777777777778, Snapchat_Time = 0.125, Instagram_Time = 0
## 
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.125 0.142361111111111 0.152777777777778
##      0.000000000123720820519974     0                 0                 0
##      0.0000000142143709248919       0                 0                 0
##      0.0000000203570784591136       0                 0                 0
##      0.0000000942663046181582       0                 0                 0
##      0.0381424863643358             0                 0                 0
##      0.0395235614826762             0                 0                 0
##      0.0398504564629362             0                 0                 0
##      0.0449831541922517             0                 0                 0
##      0.150208567676068              0                 0                 0
##      0.291704657263826              0                 0                 0
##      0.31263158525612               0                 0                 0
##      0.313581394222809              0                 0                 0
##      0.399450114450523              0                 0                 0
##      0.419739887455571              0                 0                 0
##      0.425358901761228              0                 0                 0
##      0.594035429893685              0                 0                 0
##      0.671638488556335              0                 0                 0
##      0.688092298985074              0                 0                 0
##      0.806600378227794              0                 0                 0
##      0.867455094638368              0                 0                 0
##      0.897003448844096              0                 0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.174305555555556 0.208333333333333
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.220833333333333 0.25 0.270833333333333
##      0.000000000123720820519974                 0    0                 0
##      0.0000000142143709248919                   0    0                 0
##      0.0000000203570784591136                   0    0                 0
##      0.0000000942663046181582                   0    0                 0
##      0.0381424863643358                         0    0                 0
##      0.0395235614826762                         0    0                 0
##      0.0398504564629362                         0    0                 0
##      0.0449831541922517                         0    0                 0
##      0.150208567676068                          0    0                 0
##      0.291704657263826                          0    0                 0
##      0.31263158525612                           0    0                 0
##      0.313581394222809                          0    0                 0
##      0.399450114450523                          0    0                 0
##      0.419739887455571                          0    0                 0
##      0.425358901761228                          0    0                 0
##      0.594035429893685                          0    0                 0
##      0.671638488556335                          0    0                 0
##      0.688092298985074                          0    0                 0
##      0.806600378227794                          0    0                 0
##      0.867455094638368                          0    0                 0
##      0.897003448844096                          0    0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.289583333333333 0.371527777777778
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.409722222222222 0.416666666666667 0.5 0.55625
##      0.000000000123720820519974                 0                 0   0       0
##      0.0000000142143709248919                   0                 0   0       0
##      0.0000000203570784591136                   0                 0   0       0
##      0.0000000942663046181582                   0                 0   0       0
##      0.0381424863643358                         0                 0   0       0
##      0.0395235614826762                         0                 0   0       0
##      0.0398504564629362                         0                 0   0       0
##      0.0449831541922517                         0                 0   0       0
##      0.150208567676068                          0                 0   0       0
##      0.291704657263826                          0                 0   0       0
##      0.31263158525612                           0                 0   0       0
##      0.313581394222809                          0                 0   0       0
##      0.399450114450523                          0                 0   0       0
##      0.419739887455571                          0                 0   0       0
##      0.425358901761228                          0                 0   0       0
##      0.594035429893685                          0                 0   0       0
##      0.671638488556335                          0                 0   0       0
##      0.688092298985074                          0                 0   0       0
##      0.806600378227794                          0                 0   0       0
##      0.867455094638368                          0                 0   0       0
##      0.897003448844096                          0                 0   0       0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.639583333333333 0.907785087701754 1
##      0.000000000123720820519974                 0                 0 0
##      0.0000000142143709248919                   0                 0 0
##      0.0000000203570784591136                   0                 0 0
##      0.0000000942663046181582                   0                 0 0
##      0.0381424863643358                         0                 0 0
##      0.0395235614826762                         0                 0 0
##      0.0398504564629362                         0                 0 0
##      0.0449831541922517                         0                 0 0
##      0.150208567676068                          0                 0 0
##      0.291704657263826                          0                 0 0
##      0.31263158525612                           0                 0 0
##      0.313581394222809                          0                 0 0
##      0.399450114450523                          0                 0 0
##      0.419739887455571                          0                 0 0
##      0.425358901761228                          0                 0 0
##      0.594035429893685                          0                 0 0
##      0.671638488556335                          0                 0 0
##      0.688092298985074                          0                 0 0
##      0.806600378227794                          0                 0 0
##      0.867455094638368                          0                 0 0
##      0.897003448844096                          0                 0 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 1.34930555555556 4.020833333 6.15
##      0.000000000123720820519974                0           0    0
##      0.0000000142143709248919                  0           0    0
##      0.0000000203570784591136                  0           0    0
##      0.0000000942663046181582                  0           0    0
##      0.0381424863643358                        0           0    0
##      0.0395235614826762                        0           0    0
##      0.0398504564629362                        0           0    0
##      0.0449831541922517                        0           0    0
##      0.150208567676068                         0           0    0
##      0.291704657263826                         0           0    0
##      0.31263158525612                          0           0    0
##      0.313581394222809                         0           0    0
##      0.399450114450523                         0           0    0
##      0.419739887455571                         0           0    0
##      0.425358901761228                         0           0    0
##      0.594035429893685                         0           0    0
##      0.671638488556335                         0           0    0
##      0.688092298985074                         0           0    0
##      0.806600378227794                         0           0    0
##      0.867455094638368                         0           0    0
##      0.897003448844096                         0           0    0
## 
## , , OTT_Time = 0.125, Snapchat_Time = 0.125, Instagram_Time = 0
## 
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.125 0.142361111111111 0.152777777777778
##      0.000000000123720820519974     0                 0                 0
##      0.0000000142143709248919       0                 0                 0
##      0.0000000203570784591136       0                 0                 0
##      0.0000000942663046181582       0                 0                 0
##      0.0381424863643358             0                 0                 0
##      0.0395235614826762             0                 0                 0
##      0.0398504564629362             0                 0                 0
##      0.0449831541922517             0                 0                 0
##      0.150208567676068              0                 0                 0
##      0.291704657263826              0                 0                 0
##      0.31263158525612               0                 0                 0
##      0.313581394222809              0                 0                 0
##      0.399450114450523              0                 0                 0
##      0.419739887455571              0                 0                 0
##      0.425358901761228              0                 0                 0
##      0.594035429893685              0                 0                 0
##      0.671638488556335              0                 0                 0
##      0.688092298985074              0                 0                 0
##      0.806600378227794              0                 0                 0
##      0.867455094638368              0                 0                 0
##      0.897003448844096              0                 0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.174305555555556 0.208333333333333
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.220833333333333 0.25 0.270833333333333
##      0.000000000123720820519974                 0    0                 0
##      0.0000000142143709248919                   0    0                 0
##      0.0000000203570784591136                   0    0                 0
##      0.0000000942663046181582                   0    0                 0
##      0.0381424863643358                         0    0                 0
##      0.0395235614826762                         0    0                 0
##      0.0398504564629362                         0    0                 0
##      0.0449831541922517                         0    0                 0
##      0.150208567676068                          0    0                 0
##      0.291704657263826                          0    0                 0
##      0.31263158525612                           0    0                 0
##      0.313581394222809                          0    0                 0
##      0.399450114450523                          0    0                 0
##      0.419739887455571                          0    0                 0
##      0.425358901761228                          0    0                 0
##      0.594035429893685                          0    0                 0
##      0.671638488556335                          0    0                 0
##      0.688092298985074                          0    0                 0
##      0.806600378227794                          0    0                 0
##      0.867455094638368                          0    0                 0
##      0.897003448844096                          0    0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.289583333333333 0.371527777777778
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.409722222222222 0.416666666666667 0.5 0.55625
##      0.000000000123720820519974                 0                 0   0       0
##      0.0000000142143709248919                   0                 0   0       0
##      0.0000000203570784591136                   0                 0   0       0
##      0.0000000942663046181582                   0                 0   0       0
##      0.0381424863643358                         0                 0   0       0
##      0.0395235614826762                         0                 0   0       0
##      0.0398504564629362                         0                 0   0       0
##      0.0449831541922517                         0                 0   0       0
##      0.150208567676068                          0                 0   0       0
##      0.291704657263826                          0                 0   0       0
##      0.31263158525612                           0                 0   0       0
##      0.313581394222809                          0                 0   0       0
##      0.399450114450523                          0                 0   0       0
##      0.419739887455571                          0                 0   0       0
##      0.425358901761228                          0                 0   0       0
##      0.594035429893685                          0                 0   0       0
##      0.671638488556335                          0                 0   0       0
##      0.688092298985074                          0                 0   0       0
##      0.806600378227794                          0                 0   0       0
##      0.867455094638368                          0                 0   0       0
##      0.897003448844096                          0                 0   0       0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.639583333333333 0.907785087701754 1
##      0.000000000123720820519974                 0                 0 0
##      0.0000000142143709248919                   0                 0 0
##      0.0000000203570784591136                   0                 0 0
##      0.0000000942663046181582                   0                 0 0
##      0.0381424863643358                         0                 0 0
##      0.0395235614826762                         0                 0 0
##      0.0398504564629362                         0                 0 0
##      0.0449831541922517                         0                 0 0
##      0.150208567676068                          0                 0 0
##      0.291704657263826                          0                 0 0
##      0.31263158525612                           0                 0 0
##      0.313581394222809                          0                 0 0
##      0.399450114450523                          0                 0 0
##      0.419739887455571                          0                 0 0
##      0.425358901761228                          0                 0 0
##      0.594035429893685                          0                 0 0
##      0.671638488556335                          0                 0 0
##      0.688092298985074                          0                 0 0
##      0.806600378227794                          0                 0 0
##      0.867455094638368                          0                 0 0
##      0.897003448844096                          0                 0 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 1.34930555555556 4.020833333 6.15
##      0.000000000123720820519974                0           0    0
##      0.0000000142143709248919                  0           0    0
##      0.0000000203570784591136                  0           0    0
##      0.0000000942663046181582                  0           0    0
##      0.0381424863643358                        0           0    0
##      0.0395235614826762                        0           0    0
##      0.0398504564629362                        0           0    0
##      0.0449831541922517                        0           0    0
##      0.150208567676068                         0           0    0
##      0.291704657263826                         0           0    0
##      0.31263158525612                          0           0    0
##      0.313581394222809                         0           0    0
##      0.399450114450523                         0           0    0
##      0.419739887455571                         0           0    0
##      0.425358901761228                         0           0    0
##      0.594035429893685                         0           0    0
##      0.671638488556335                         0           0    0
##      0.688092298985074                         0           0    0
##      0.806600378227794                         0           0    0
##      0.867455094638368                         0           0    0
##      0.897003448844096                         0           0    0
## 
## , , OTT_Time = 0.416666666666667, Snapchat_Time = 0.125, Instagram_Time = 0
## 
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.125 0.142361111111111 0.152777777777778
##      0.000000000123720820519974     0                 0                 0
##      0.0000000142143709248919       0                 0                 0
##      0.0000000203570784591136       0                 0                 0
##      0.0000000942663046181582       0                 0                 0
##      0.0381424863643358             0                 0                 0
##      0.0395235614826762             0                 0                 0
##      0.0398504564629362             0                 0                 0
##      0.0449831541922517             0                 0                 0
##      0.150208567676068              0                 0                 0
##      0.291704657263826              0                 0                 0
##      0.31263158525612               0                 0                 0
##      0.313581394222809              0                 0                 0
##      0.399450114450523              0                 0                 0
##      0.419739887455571              0                 0                 0
##      0.425358901761228              0                 0                 0
##      0.594035429893685              0                 0                 0
##      0.671638488556335              0                 0                 0
##      0.688092298985074              0                 0                 0
##      0.806600378227794              0                 0                 0
##      0.867455094638368              0                 0                 0
##      0.897003448844096              0                 0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.174305555555556 0.208333333333333
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.220833333333333 0.25 0.270833333333333
##      0.000000000123720820519974                 0    0                 0
##      0.0000000142143709248919                   0    0                 0
##      0.0000000203570784591136                   0    0                 0
##      0.0000000942663046181582                   0    0                 0
##      0.0381424863643358                         0    0                 0
##      0.0395235614826762                         0    0                 0
##      0.0398504564629362                         0    0                 0
##      0.0449831541922517                         0    0                 0
##      0.150208567676068                          0    0                 0
##      0.291704657263826                          0    0                 0
##      0.31263158525612                           0    0                 0
##      0.313581394222809                          0    0                 0
##      0.399450114450523                          0    0                 0
##      0.419739887455571                          0    0                 0
##      0.425358901761228                          0    0                 0
##      0.594035429893685                          0    0                 0
##      0.671638488556335                          0    0                 0
##      0.688092298985074                          0    0                 0
##      0.806600378227794                          0    0                 0
##      0.867455094638368                          0    0                 0
##      0.897003448844096                          0    0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.289583333333333 0.371527777777778
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.409722222222222 0.416666666666667 0.5 0.55625
##      0.000000000123720820519974                 0                 0   0       0
##      0.0000000142143709248919                   0                 0   0       0
##      0.0000000203570784591136                   0                 0   0       0
##      0.0000000942663046181582                   0                 0   0       0
##      0.0381424863643358                         0                 0   0       0
##      0.0395235614826762                         0                 0   0       0
##      0.0398504564629362                         0                 0   0       0
##      0.0449831541922517                         0                 0   0       0
##      0.150208567676068                          0                 0   0       0
##      0.291704657263826                          0                 0   0       0
##      0.31263158525612                           0                 0   0       0
##      0.313581394222809                          0                 0   0       0
##      0.399450114450523                          0                 0   0       0
##      0.419739887455571                          0                 0   0       0
##      0.425358901761228                          0                 0   0       0
##      0.594035429893685                          0                 0   0       0
##      0.671638488556335                          0                 0   0       0
##      0.688092298985074                          0                 0   0       0
##      0.806600378227794                          0                 0   0       0
##      0.867455094638368                          0                 0   0       0
##      0.897003448844096                          0                 0   0       0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.639583333333333 0.907785087701754 1
##      0.000000000123720820519974                 0                 0 0
##      0.0000000142143709248919                   0                 0 0
##      0.0000000203570784591136                   0                 0 0
##      0.0000000942663046181582                   0                 0 0
##      0.0381424863643358                         0                 0 0
##      0.0395235614826762                         0                 0 0
##      0.0398504564629362                         0                 0 0
##      0.0449831541922517                         0                 0 0
##      0.150208567676068                          0                 0 0
##      0.291704657263826                          0                 0 0
##      0.31263158525612                           0                 0 0
##      0.313581394222809                          0                 0 0
##      0.399450114450523                          0                 0 0
##      0.419739887455571                          0                 0 0
##      0.425358901761228                          0                 0 0
##      0.594035429893685                          0                 0 0
##      0.671638488556335                          0                 0 0
##      0.688092298985074                          0                 0 0
##      0.806600378227794                          0                 0 0
##      0.867455094638368                          0                 0 0
##      0.897003448844096                          0                 0 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 1.34930555555556 4.020833333 6.15
##      0.000000000123720820519974                0           0    0
##      0.0000000142143709248919                  0           0    0
##      0.0000000203570784591136                  0           0    0
##      0.0000000942663046181582                  0           0    0
##      0.0381424863643358                        0           0    0
##      0.0395235614826762                        0           0    0
##      0.0398504564629362                        0           0    0
##      0.0449831541922517                        0           0    0
##      0.150208567676068                         0           0    0
##      0.291704657263826                         0           0    0
##      0.31263158525612                          0           0    0
##      0.313581394222809                         0           0    0
##      0.399450114450523                         0           0    0
##      0.419739887455571                         0           0    0
##      0.425358901761228                         0           0    0
##      0.594035429893685                         0           0    0
##      0.671638488556335                         0           0    0
##      0.688092298985074                         0           0    0
##      0.806600378227794                         0           0    0
##      0.867455094638368                         0           0    0
##      0.897003448844096                         0           0    0
## 
## , , OTT_Time = 0.5104166667, Snapchat_Time = 0.125, Instagram_Time = 0
## 
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.125 0.142361111111111 0.152777777777778
##      0.000000000123720820519974     0                 0                 0
##      0.0000000142143709248919       0                 0                 0
##      0.0000000203570784591136       0                 0                 0
##      0.0000000942663046181582       0                 0                 0
##      0.0381424863643358             0                 0                 0
##      0.0395235614826762             0                 0                 0
##      0.0398504564629362             0                 0                 0
##      0.0449831541922517             0                 0                 0
##      0.150208567676068              0                 0                 0
##      0.291704657263826              0                 0                 0
##      0.31263158525612               0                 0                 0
##      0.313581394222809              0                 0                 0
##      0.399450114450523              0                 0                 0
##      0.419739887455571              0                 0                 0
##      0.425358901761228              0                 0                 0
##      0.594035429893685              0                 0                 0
##      0.671638488556335              0                 0                 0
##      0.688092298985074              0                 0                 0
##      0.806600378227794              0                 0                 0
##      0.867455094638368              0                 0                 0
##      0.897003448844096              0                 0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.174305555555556 0.208333333333333
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.220833333333333 0.25 0.270833333333333
##      0.000000000123720820519974                 0    0                 0
##      0.0000000142143709248919                   0    0                 0
##      0.0000000203570784591136                   0    0                 0
##      0.0000000942663046181582                   0    0                 0
##      0.0381424863643358                         0    0                 0
##      0.0395235614826762                         0    0                 0
##      0.0398504564629362                         0    0                 0
##      0.0449831541922517                         0    0                 0
##      0.150208567676068                          0    0                 0
##      0.291704657263826                          0    0                 0
##      0.31263158525612                           0    0                 0
##      0.313581394222809                          0    0                 0
##      0.399450114450523                          0    0                 0
##      0.419739887455571                          0    0                 0
##      0.425358901761228                          0    0                 0
##      0.594035429893685                          0    0                 0
##      0.671638488556335                          0    0                 0
##      0.688092298985074                          0    0                 0
##      0.806600378227794                          0    0                 0
##      0.867455094638368                          0    0                 0
##      0.897003448844096                          0    0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.289583333333333 0.371527777777778
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.409722222222222 0.416666666666667 0.5 0.55625
##      0.000000000123720820519974                 0                 0   0       0
##      0.0000000142143709248919                   0                 0   0       0
##      0.0000000203570784591136                   0                 0   0       0
##      0.0000000942663046181582                   0                 0   0       0
##      0.0381424863643358                         0                 0   0       0
##      0.0395235614826762                         0                 0   0       0
##      0.0398504564629362                         0                 0   0       0
##      0.0449831541922517                         0                 0   0       0
##      0.150208567676068                          0                 0   0       0
##      0.291704657263826                          0                 0   0       0
##      0.31263158525612                           0                 0   0       0
##      0.313581394222809                          0                 0   0       0
##      0.399450114450523                          0                 0   0       0
##      0.419739887455571                          0                 0   0       0
##      0.425358901761228                          0                 0   0       0
##      0.594035429893685                          0                 0   0       0
##      0.671638488556335                          0                 0   0       0
##      0.688092298985074                          0                 0   0       0
##      0.806600378227794                          0                 0   0       0
##      0.867455094638368                          0                 0   0       0
##      0.897003448844096                          0                 0   0       0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.639583333333333 0.907785087701754 1
##      0.000000000123720820519974                 0                 0 0
##      0.0000000142143709248919                   0                 0 0
##      0.0000000203570784591136                   0                 0 0
##      0.0000000942663046181582                   0                 0 0
##      0.0381424863643358                         0                 0 0
##      0.0395235614826762                         0                 0 0
##      0.0398504564629362                         0                 0 0
##      0.0449831541922517                         0                 0 0
##      0.150208567676068                          0                 0 0
##      0.291704657263826                          0                 0 0
##      0.31263158525612                           0                 0 0
##      0.313581394222809                          0                 0 0
##      0.399450114450523                          0                 0 0
##      0.419739887455571                          0                 0 0
##      0.425358901761228                          0                 0 0
##      0.594035429893685                          0                 0 0
##      0.671638488556335                          0                 0 0
##      0.688092298985074                          0                 0 0
##      0.806600378227794                          0                 0 0
##      0.867455094638368                          0                 0 0
##      0.897003448844096                          0                 0 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 1.34930555555556 4.020833333 6.15
##      0.000000000123720820519974                0           0    0
##      0.0000000142143709248919                  0           0    0
##      0.0000000203570784591136                  0           0    0
##      0.0000000942663046181582                  0           0    0
##      0.0381424863643358                        0           0    0
##      0.0395235614826762                        0           0    0
##      0.0398504564629362                        0           0    0
##      0.0449831541922517                        0           0    0
##      0.150208567676068                         0           0    0
##      0.291704657263826                         0           0    0
##      0.31263158525612                          0           0    0
##      0.313581394222809                         0           0    0
##      0.399450114450523                         0           0    0
##      0.419739887455571                         0           0    0
##      0.425358901761228                         0           0    0
##      0.594035429893685                         0           0    0
##      0.671638488556335                         0           0    0
##      0.688092298985074                         0           0    0
##      0.806600378227794                         0           0    0
##      0.867455094638368                         0           0    0
##      0.897003448844096                         0           0    0
## 
## , , OTT_Time = 1.44460470085726, Snapchat_Time = 0.125, Instagram_Time = 0
## 
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.125 0.142361111111111 0.152777777777778
##      0.000000000123720820519974     0                 0                 0
##      0.0000000142143709248919       0                 0                 0
##      0.0000000203570784591136       0                 0                 0
##      0.0000000942663046181582       0                 0                 0
##      0.0381424863643358             0                 0                 0
##      0.0395235614826762             0                 0                 0
##      0.0398504564629362             0                 0                 0
##      0.0449831541922517             0                 0                 0
##      0.150208567676068              0                 0                 0
##      0.291704657263826              0                 0                 0
##      0.31263158525612               0                 0                 0
##      0.313581394222809              0                 0                 0
##      0.399450114450523              0                 0                 0
##      0.419739887455571              0                 0                 0
##      0.425358901761228              0                 0                 0
##      0.594035429893685              0                 0                 0
##      0.671638488556335              0                 0                 0
##      0.688092298985074              0                 0                 0
##      0.806600378227794              0                 0                 0
##      0.867455094638368              0                 0                 0
##      0.897003448844096              0                 0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.174305555555556 0.208333333333333
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.220833333333333 0.25 0.270833333333333
##      0.000000000123720820519974                 0    0                 0
##      0.0000000142143709248919                   0    0                 0
##      0.0000000203570784591136                   0    0                 0
##      0.0000000942663046181582                   0    0                 0
##      0.0381424863643358                         0    0                 0
##      0.0395235614826762                         0    0                 0
##      0.0398504564629362                         0    0                 0
##      0.0449831541922517                         0    0                 0
##      0.150208567676068                          0    0                 0
##      0.291704657263826                          0    0                 0
##      0.31263158525612                           0    0                 0
##      0.313581394222809                          0    0                 0
##      0.399450114450523                          0    0                 0
##      0.419739887455571                          0    0                 0
##      0.425358901761228                          0    0                 0
##      0.594035429893685                          0    0                 0
##      0.671638488556335                          0    0                 0
##      0.688092298985074                          0    0                 0
##      0.806600378227794                          0    0                 0
##      0.867455094638368                          0    0                 0
##      0.897003448844096                          0    0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.289583333333333 0.371527777777778
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.409722222222222 0.416666666666667 0.5 0.55625
##      0.000000000123720820519974                 0                 0   0       0
##      0.0000000142143709248919                   0                 0   0       0
##      0.0000000203570784591136                   0                 0   0       0
##      0.0000000942663046181582                   0                 0   0       0
##      0.0381424863643358                         0                 0   0       0
##      0.0395235614826762                         0                 0   0       0
##      0.0398504564629362                         0                 0   0       0
##      0.0449831541922517                         0                 0   0       0
##      0.150208567676068                          0                 0   0       0
##      0.291704657263826                          0                 0   0       0
##      0.31263158525612                           0                 0   0       0
##      0.313581394222809                          0                 0   0       0
##      0.399450114450523                          0                 0   0       0
##      0.419739887455571                          0                 0   0       0
##      0.425358901761228                          0                 0   0       0
##      0.594035429893685                          0                 0   0       0
##      0.671638488556335                          0                 0   0       0
##      0.688092298985074                          0                 0   0       0
##      0.806600378227794                          0                 0   0       0
##      0.867455094638368                          0                 0   0       0
##      0.897003448844096                          0                 0   0       0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.639583333333333 0.907785087701754 1
##      0.000000000123720820519974                 0                 0 0
##      0.0000000142143709248919                   0                 0 0
##      0.0000000203570784591136                   0                 0 0
##      0.0000000942663046181582                   0                 0 0
##      0.0381424863643358                         0                 0 0
##      0.0395235614826762                         0                 0 0
##      0.0398504564629362                         0                 0 0
##      0.0449831541922517                         0                 0 0
##      0.150208567676068                          0                 0 0
##      0.291704657263826                          0                 0 0
##      0.31263158525612                           0                 0 0
##      0.313581394222809                          0                 0 0
##      0.399450114450523                          0                 0 0
##      0.419739887455571                          0                 0 0
##      0.425358901761228                          0                 0 0
##      0.594035429893685                          0                 0 0
##      0.671638488556335                          0                 0 0
##      0.688092298985074                          0                 0 0
##      0.806600378227794                          0                 0 0
##      0.867455094638368                          0                 0 0
##      0.897003448844096                          0                 0 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 1.34930555555556 4.020833333 6.15
##      0.000000000123720820519974                0           0    0
##      0.0000000142143709248919                  0           0    0
##      0.0000000203570784591136                  0           0    0
##      0.0000000942663046181582                  0           0    0
##      0.0381424863643358                        0           0    0
##      0.0395235614826762                        0           0    0
##      0.0398504564629362                        0           0    0
##      0.0449831541922517                        0           0    0
##      0.150208567676068                         0           0    0
##      0.291704657263826                         0           0    0
##      0.31263158525612                          0           0    0
##      0.313581394222809                         0           0    0
##      0.399450114450523                         0           0    0
##      0.419739887455571                         0           0    0
##      0.425358901761228                         0           0    0
##      0.594035429893685                         0           0    0
##      0.671638488556335                         0           0    0
##      0.688092298985074                         0           0    0
##      0.806600378227794                         0           0    0
##      0.867455094638368                         0           0    0
##      0.897003448844096                         0           0    0
## 
## , , OTT_Time = 3, Snapchat_Time = 0.125, Instagram_Time = 0
## 
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.125 0.142361111111111 0.152777777777778
##      0.000000000123720820519974     0                 0                 0
##      0.0000000142143709248919       0                 0                 0
##      0.0000000203570784591136       0                 0                 0
##      0.0000000942663046181582       0                 0                 0
##      0.0381424863643358             0                 0                 0
##      0.0395235614826762             0                 0                 0
##      0.0398504564629362             0                 0                 0
##      0.0449831541922517             0                 0                 0
##      0.150208567676068              0                 0                 0
##      0.291704657263826              0                 0                 0
##      0.31263158525612               0                 0                 0
##      0.313581394222809              0                 0                 0
##      0.399450114450523              0                 0                 0
##      0.419739887455571              0                 0                 0
##      0.425358901761228              0                 0                 0
##      0.594035429893685              0                 0                 0
##      0.671638488556335              0                 0                 0
##      0.688092298985074              0                 0                 0
##      0.806600378227794              0                 0                 0
##      0.867455094638368              0                 0                 0
##      0.897003448844096              0                 0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.174305555555556 0.208333333333333
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.220833333333333 0.25 0.270833333333333
##      0.000000000123720820519974                 0    0                 0
##      0.0000000142143709248919                   0    0                 0
##      0.0000000203570784591136                   0    0                 0
##      0.0000000942663046181582                   0    0                 0
##      0.0381424863643358                         0    0                 0
##      0.0395235614826762                         0    0                 0
##      0.0398504564629362                         0    0                 0
##      0.0449831541922517                         0    0                 0
##      0.150208567676068                          0    0                 0
##      0.291704657263826                          0    0                 0
##      0.31263158525612                           0    0                 0
##      0.313581394222809                          0    0                 0
##      0.399450114450523                          0    0                 0
##      0.419739887455571                          0    0                 0
##      0.425358901761228                          0    0                 0
##      0.594035429893685                          0    0                 0
##      0.671638488556335                          0    0                 0
##      0.688092298985074                          0    0                 0
##      0.806600378227794                          0    0                 0
##      0.867455094638368                          0    0                 0
##      0.897003448844096                          0    0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.289583333333333 0.371527777777778
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.409722222222222 0.416666666666667 0.5 0.55625
##      0.000000000123720820519974                 0                 0   0       0
##      0.0000000142143709248919                   0                 0   0       0
##      0.0000000203570784591136                   0                 0   0       0
##      0.0000000942663046181582                   0                 0   0       0
##      0.0381424863643358                         0                 0   0       0
##      0.0395235614826762                         0                 0   0       0
##      0.0398504564629362                         0                 0   0       0
##      0.0449831541922517                         0                 0   0       0
##      0.150208567676068                          0                 0   0       0
##      0.291704657263826                          0                 0   0       0
##      0.31263158525612                           0                 0   0       0
##      0.313581394222809                          0                 0   0       0
##      0.399450114450523                          0                 0   0       0
##      0.419739887455571                          0                 0   0       0
##      0.425358901761228                          0                 0   0       0
##      0.594035429893685                          0                 0   0       0
##      0.671638488556335                          0                 0   0       0
##      0.688092298985074                          0                 0   0       0
##      0.806600378227794                          0                 0   0       0
##      0.867455094638368                          0                 0   0       0
##      0.897003448844096                          0                 0   0       0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.639583333333333 0.907785087701754 1
##      0.000000000123720820519974                 0                 0 0
##      0.0000000142143709248919                   0                 0 0
##      0.0000000203570784591136                   0                 0 0
##      0.0000000942663046181582                   0                 0 0
##      0.0381424863643358                         0                 0 0
##      0.0395235614826762                         0                 0 0
##      0.0398504564629362                         0                 0 0
##      0.0449831541922517                         0                 0 0
##      0.150208567676068                          0                 0 0
##      0.291704657263826                          0                 0 0
##      0.31263158525612                           0                 0 0
##      0.313581394222809                          0                 0 0
##      0.399450114450523                          0                 0 0
##      0.419739887455571                          0                 0 0
##      0.425358901761228                          0                 0 0
##      0.594035429893685                          0                 0 0
##      0.671638488556335                          0                 0 0
##      0.688092298985074                          0                 0 0
##      0.806600378227794                          0                 0 0
##      0.867455094638368                          0                 0 0
##      0.897003448844096                          0                 0 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 1.34930555555556 4.020833333 6.15
##      0.000000000123720820519974                0           0    0
##      0.0000000142143709248919                  0           0    0
##      0.0000000203570784591136                  0           0    0
##      0.0000000942663046181582                  0           0    0
##      0.0381424863643358                        0           0    0
##      0.0395235614826762                        0           0    0
##      0.0398504564629362                        0           0    0
##      0.0449831541922517                        0           0    0
##      0.150208567676068                         0           0    0
##      0.291704657263826                         0           0    0
##      0.31263158525612                          0           0    0
##      0.313581394222809                         0           0    0
##      0.399450114450523                         0           0    0
##      0.419739887455571                         0           0    0
##      0.425358901761228                         0           0    0
##      0.594035429893685                         0           0    0
##      0.671638488556335                         0           0    0
##      0.688092298985074                         0           0    0
##      0.806600378227794                         0           0    0
##      0.867455094638368                         0           0    0
##      0.897003448844096                         0           0    0
## 
## , , OTT_Time = 14.5, Snapchat_Time = 0.125, Instagram_Time = 0
## 
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.125 0.142361111111111 0.152777777777778
##      0.000000000123720820519974     0                 0                 0
##      0.0000000142143709248919       0                 0                 0
##      0.0000000203570784591136       0                 0                 0
##      0.0000000942663046181582       0                 0                 0
##      0.0381424863643358             0                 0                 0
##      0.0395235614826762             0                 0                 0
##      0.0398504564629362             0                 0                 0
##      0.0449831541922517             0                 0                 0
##      0.150208567676068              0                 0                 0
##      0.291704657263826              0                 0                 0
##      0.31263158525612               0                 0                 0
##      0.313581394222809              0                 0                 0
##      0.399450114450523              0                 0                 0
##      0.419739887455571              0                 0                 0
##      0.425358901761228              0                 0                 0
##      0.594035429893685              0                 0                 0
##      0.671638488556335              0                 0                 0
##      0.688092298985074              0                 0                 0
##      0.806600378227794              0                 0                 0
##      0.867455094638368              0                 0                 0
##      0.897003448844096              0                 0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.174305555555556 0.208333333333333
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.220833333333333 0.25 0.270833333333333
##      0.000000000123720820519974                 0    0                 0
##      0.0000000142143709248919                   0    0                 0
##      0.0000000203570784591136                   0    0                 0
##      0.0000000942663046181582                   0    0                 0
##      0.0381424863643358                         0    0                 0
##      0.0395235614826762                         0    0                 0
##      0.0398504564629362                         0    0                 0
##      0.0449831541922517                         0    0                 0
##      0.150208567676068                          0    0                 0
##      0.291704657263826                          0    0                 0
##      0.31263158525612                           0    0                 0
##      0.313581394222809                          0    0                 0
##      0.399450114450523                          0    0                 0
##      0.419739887455571                          0    0                 0
##      0.425358901761228                          0    0                 0
##      0.594035429893685                          0    0                 0
##      0.671638488556335                          0    0                 0
##      0.688092298985074                          0    0                 0
##      0.806600378227794                          0    0                 0
##      0.867455094638368                          0    0                 0
##      0.897003448844096                          0    0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.289583333333333 0.371527777777778
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.409722222222222 0.416666666666667 0.5 0.55625
##      0.000000000123720820519974                 0                 0   0       0
##      0.0000000142143709248919                   0                 0   0       0
##      0.0000000203570784591136                   0                 0   0       0
##      0.0000000942663046181582                   0                 0   0       0
##      0.0381424863643358                         0                 0   0       0
##      0.0395235614826762                         0                 0   0       0
##      0.0398504564629362                         0                 0   0       0
##      0.0449831541922517                         0                 0   0       0
##      0.150208567676068                          0                 0   0       0
##      0.291704657263826                          0                 0   0       0
##      0.31263158525612                           0                 0   0       0
##      0.313581394222809                          0                 0   0       0
##      0.399450114450523                          0                 0   0       0
##      0.419739887455571                          0                 0   0       0
##      0.425358901761228                          0                 0   0       0
##      0.594035429893685                          0                 0   0       0
##      0.671638488556335                          0                 0   0       0
##      0.688092298985074                          0                 0   0       0
##      0.806600378227794                          0                 0   0       0
##      0.867455094638368                          0                 0   0       0
##      0.897003448844096                          0                 0   0       0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.639583333333333 0.907785087701754 1
##      0.000000000123720820519974                 0                 0 0
##      0.0000000142143709248919                   0                 0 0
##      0.0000000203570784591136                   0                 0 0
##      0.0000000942663046181582                   0                 0 0
##      0.0381424863643358                         0                 0 0
##      0.0395235614826762                         0                 0 0
##      0.0398504564629362                         0                 0 0
##      0.0449831541922517                         0                 0 0
##      0.150208567676068                          0                 0 0
##      0.291704657263826                          0                 0 0
##      0.31263158525612                           0                 0 0
##      0.313581394222809                          0                 0 0
##      0.399450114450523                          0                 0 0
##      0.419739887455571                          0                 0 0
##      0.425358901761228                          0                 0 0
##      0.594035429893685                          0                 0 0
##      0.671638488556335                          0                 0 0
##      0.688092298985074                          0                 0 0
##      0.806600378227794                          0                 0 0
##      0.867455094638368                          0                 0 0
##      0.897003448844096                          0                 0 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 1.34930555555556 4.020833333 6.15
##      0.000000000123720820519974                0           0    0
##      0.0000000142143709248919                  0           0    0
##      0.0000000203570784591136                  0           0    0
##      0.0000000942663046181582                  0           0    0
##      0.0381424863643358                        0           0    0
##      0.0395235614826762                        0           0    0
##      0.0398504564629362                        0           0    0
##      0.0449831541922517                        0           0    0
##      0.150208567676068                         0           0    0
##      0.291704657263826                         0           0    0
##      0.31263158525612                          0           0    0
##      0.313581394222809                         0           0    0
##      0.399450114450523                         0           0    0
##      0.419739887455571                         0           0    0
##      0.425358901761228                         0           0    0
##      0.594035429893685                         0           0    0
##      0.671638488556335                         0           0    0
##      0.688092298985074                         0           0    0
##      0.806600378227794                         0           0    0
##      0.867455094638368                         0           0    0
##      0.897003448844096                         0           0    0
## 
## , , OTT_Time = 0, Snapchat_Time = 0.153472222222222, Instagram_Time = 0
## 
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.125 0.142361111111111 0.152777777777778
##      0.000000000123720820519974     0                 0                 0
##      0.0000000142143709248919       0                 0                 0
##      0.0000000203570784591136       0                 0                 0
##      0.0000000942663046181582       0                 0                 0
##      0.0381424863643358             0                 0                 0
##      0.0395235614826762             0                 0                 0
##      0.0398504564629362             0                 0                 0
##      0.0449831541922517             0                 0                 0
##      0.150208567676068              0                 0                 0
##      0.291704657263826              0                 0                 0
##      0.31263158525612               0                 0                 0
##      0.313581394222809              0                 0                 0
##      0.399450114450523              0                 0                 0
##      0.419739887455571              0                 0                 0
##      0.425358901761228              0                 0                 0
##      0.594035429893685              0                 0                 0
##      0.671638488556335              0                 0                 0
##      0.688092298985074              0                 0                 0
##      0.806600378227794              0                 0                 0
##      0.867455094638368              0                 0                 0
##      0.897003448844096              0                 0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.174305555555556 0.208333333333333
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.220833333333333 0.25 0.270833333333333
##      0.000000000123720820519974                 0    0                 0
##      0.0000000142143709248919                   0    0                 0
##      0.0000000203570784591136                   0    0                 0
##      0.0000000942663046181582                   0    0                 0
##      0.0381424863643358                         0    0                 0
##      0.0395235614826762                         0    0                 0
##      0.0398504564629362                         0    0                 0
##      0.0449831541922517                         0    0                 0
##      0.150208567676068                          0    0                 0
##      0.291704657263826                          0    0                 0
##      0.31263158525612                           0    0                 0
##      0.313581394222809                          0    0                 0
##      0.399450114450523                          0    0                 0
##      0.419739887455571                          0    0                 0
##      0.425358901761228                          0    0                 0
##      0.594035429893685                          0    0                 0
##      0.671638488556335                          0    0                 0
##      0.688092298985074                          0    0                 0
##      0.806600378227794                          0    0                 0
##      0.867455094638368                          0    0                 0
##      0.897003448844096                          0    0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.289583333333333 0.371527777777778
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.409722222222222 0.416666666666667 0.5 0.55625
##      0.000000000123720820519974                 0                 0   0       0
##      0.0000000142143709248919                   0                 0   0       0
##      0.0000000203570784591136                   0                 0   0       0
##      0.0000000942663046181582                   0                 0   0       0
##      0.0381424863643358                         0                 0   0       0
##      0.0395235614826762                         0                 0   0       0
##      0.0398504564629362                         0                 0   0       0
##      0.0449831541922517                         0                 0   0       0
##      0.150208567676068                          0                 0   0       0
##      0.291704657263826                          0                 0   0       0
##      0.31263158525612                           0                 0   0       0
##      0.313581394222809                          0                 0   0       0
##      0.399450114450523                          0                 0   0       0
##      0.419739887455571                          0                 0   0       0
##      0.425358901761228                          0                 0   0       0
##      0.594035429893685                          0                 0   0       0
##      0.671638488556335                          0                 0   0       0
##      0.688092298985074                          0                 0   0       0
##      0.806600378227794                          0                 0   0       0
##      0.867455094638368                          0                 0   0       0
##      0.897003448844096                          0                 0   0       0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.639583333333333 0.907785087701754 1
##      0.000000000123720820519974                 0                 0 0
##      0.0000000142143709248919                   0                 0 0
##      0.0000000203570784591136                   0                 0 0
##      0.0000000942663046181582                   0                 0 0
##      0.0381424863643358                         0                 0 0
##      0.0395235614826762                         0                 0 0
##      0.0398504564629362                         0                 0 0
##      0.0449831541922517                         0                 0 0
##      0.150208567676068                          0                 0 0
##      0.291704657263826                          0                 0 0
##      0.31263158525612                           0                 0 0
##      0.313581394222809                          0                 0 0
##      0.399450114450523                          0                 0 0
##      0.419739887455571                          0                 0 0
##      0.425358901761228                          0                 0 0
##      0.594035429893685                          0                 0 0
##      0.671638488556335                          0                 0 0
##      0.688092298985074                          0                 0 0
##      0.806600378227794                          0                 0 0
##      0.867455094638368                          0                 0 0
##      0.897003448844096                          0                 0 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 1.34930555555556 4.020833333 6.15
##      0.000000000123720820519974                0           0    0
##      0.0000000142143709248919                  0           0    0
##      0.0000000203570784591136                  0           0    0
##      0.0000000942663046181582                  0           0    0
##      0.0381424863643358                        0           0    0
##      0.0395235614826762                        0           0    0
##      0.0398504564629362                        0           0    0
##      0.0449831541922517                        0           0    0
##      0.150208567676068                         0           0    0
##      0.291704657263826                         0           0    0
##      0.31263158525612                          0           0    0
##      0.313581394222809                         0           0    0
##      0.399450114450523                         0           0    0
##      0.419739887455571                         0           0    0
##      0.425358901761228                         0           0    0
##      0.594035429893685                         0           0    0
##      0.671638488556335                         0           0    0
##      0.688092298985074                         0           0    0
##      0.806600378227794                         0           0    0
##      0.867455094638368                         0           0    0
##      0.897003448844096                         0           0    0
## 
## , , OTT_Time = 0.102777777777778, Snapchat_Time = 0.153472222222222, Instagram_Time = 0
## 
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.125 0.142361111111111 0.152777777777778
##      0.000000000123720820519974     0                 0                 0
##      0.0000000142143709248919       0                 0                 0
##      0.0000000203570784591136       0                 0                 0
##      0.0000000942663046181582       0                 0                 0
##      0.0381424863643358             0                 0                 0
##      0.0395235614826762             0                 0                 0
##      0.0398504564629362             0                 0                 0
##      0.0449831541922517             0                 0                 0
##      0.150208567676068              0                 0                 0
##      0.291704657263826              0                 0                 0
##      0.31263158525612               0                 0                 0
##      0.313581394222809              0                 0                 0
##      0.399450114450523              0                 0                 0
##      0.419739887455571              0                 0                 0
##      0.425358901761228              0                 0                 0
##      0.594035429893685              0                 0                 0
##      0.671638488556335              0                 0                 0
##      0.688092298985074              0                 0                 0
##      0.806600378227794              0                 0                 0
##      0.867455094638368              0                 0                 0
##      0.897003448844096              0                 0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.174305555555556 0.208333333333333
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.220833333333333 0.25 0.270833333333333
##      0.000000000123720820519974                 0    0                 0
##      0.0000000142143709248919                   0    0                 0
##      0.0000000203570784591136                   0    0                 0
##      0.0000000942663046181582                   0    0                 0
##      0.0381424863643358                         0    0                 0
##      0.0395235614826762                         0    0                 0
##      0.0398504564629362                         0    0                 0
##      0.0449831541922517                         0    0                 0
##      0.150208567676068                          0    0                 0
##      0.291704657263826                          0    0                 0
##      0.31263158525612                           0    0                 0
##      0.313581394222809                          0    0                 0
##      0.399450114450523                          0    0                 0
##      0.419739887455571                          0    0                 0
##      0.425358901761228                          0    0                 0
##      0.594035429893685                          0    0                 0
##      0.671638488556335                          0    0                 0
##      0.688092298985074                          0    0                 0
##      0.806600378227794                          0    0                 0
##      0.867455094638368                          0    0                 0
##      0.897003448844096                          0    0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.289583333333333 0.371527777777778
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.409722222222222 0.416666666666667 0.5 0.55625
##      0.000000000123720820519974                 0                 0   0       0
##      0.0000000142143709248919                   0                 0   0       0
##      0.0000000203570784591136                   0                 0   0       0
##      0.0000000942663046181582                   0                 0   0       0
##      0.0381424863643358                         0                 0   0       0
##      0.0395235614826762                         0                 0   0       0
##      0.0398504564629362                         0                 0   0       0
##      0.0449831541922517                         0                 0   0       0
##      0.150208567676068                          0                 0   0       0
##      0.291704657263826                          0                 0   0       0
##      0.31263158525612                           0                 0   0       0
##      0.313581394222809                          0                 0   0       0
##      0.399450114450523                          0                 0   0       0
##      0.419739887455571                          0                 0   0       0
##      0.425358901761228                          0                 0   0       0
##      0.594035429893685                          0                 0   0       0
##      0.671638488556335                          0                 0   0       0
##      0.688092298985074                          0                 0   0       0
##      0.806600378227794                          0                 0   0       0
##      0.867455094638368                          0                 0   0       0
##      0.897003448844096                          0                 0   0       0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.639583333333333 0.907785087701754 1
##      0.000000000123720820519974                 0                 0 0
##      0.0000000142143709248919                   0                 0 0
##      0.0000000203570784591136                   0                 0 0
##      0.0000000942663046181582                   0                 0 0
##      0.0381424863643358                         0                 0 0
##      0.0395235614826762                         0                 0 0
##      0.0398504564629362                         0                 0 0
##      0.0449831541922517                         0                 0 0
##      0.150208567676068                          0                 0 0
##      0.291704657263826                          0                 0 0
##      0.31263158525612                           0                 0 0
##      0.313581394222809                          0                 0 0
##      0.399450114450523                          0                 0 0
##      0.419739887455571                          0                 0 0
##      0.425358901761228                          0                 0 0
##      0.594035429893685                          0                 0 0
##      0.671638488556335                          0                 0 0
##      0.688092298985074                          0                 0 0
##      0.806600378227794                          0                 0 0
##      0.867455094638368                          0                 0 0
##      0.897003448844096                          0                 0 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 1.34930555555556 4.020833333 6.15
##      0.000000000123720820519974                0           0    0
##      0.0000000142143709248919                  0           0    0
##      0.0000000203570784591136                  0           0    0
##      0.0000000942663046181582                  0           0    0
##      0.0381424863643358                        0           0    0
##      0.0395235614826762                        0           0    0
##      0.0398504564629362                        0           0    0
##      0.0449831541922517                        0           0    0
##      0.150208567676068                         0           0    0
##      0.291704657263826                         0           0    0
##      0.31263158525612                          0           0    0
##      0.313581394222809                         0           0    0
##      0.399450114450523                         0           0    0
##      0.419739887455571                         0           0    0
##      0.425358901761228                         0           0    0
##      0.594035429893685                         0           0    0
##      0.671638488556335                         0           0    0
##      0.688092298985074                         0           0    0
##      0.806600378227794                         0           0    0
##      0.867455094638368                         0           0    0
##      0.897003448844096                         0           0    0
## 
## , , OTT_Time = 0.125, Snapchat_Time = 0.153472222222222, Instagram_Time = 0
## 
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.125 0.142361111111111 0.152777777777778
##      0.000000000123720820519974     0                 0                 0
##      0.0000000142143709248919       0                 0                 0
##      0.0000000203570784591136       0                 0                 0
##      0.0000000942663046181582       0                 0                 0
##      0.0381424863643358             0                 0                 0
##      0.0395235614826762             0                 0                 0
##      0.0398504564629362             0                 0                 0
##      0.0449831541922517             0                 0                 0
##      0.150208567676068              0                 0                 0
##      0.291704657263826              0                 0                 0
##      0.31263158525612               0                 0                 0
##      0.313581394222809              0                 0                 0
##      0.399450114450523              0                 0                 0
##      0.419739887455571              0                 0                 0
##      0.425358901761228              0                 0                 0
##      0.594035429893685              0                 0                 0
##      0.671638488556335              0                 0                 0
##      0.688092298985074              0                 0                 0
##      0.806600378227794              0                 0                 0
##      0.867455094638368              0                 0                 0
##      0.897003448844096              0                 0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.174305555555556 0.208333333333333
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.220833333333333 0.25 0.270833333333333
##      0.000000000123720820519974                 0    0                 0
##      0.0000000142143709248919                   0    0                 0
##      0.0000000203570784591136                   0    0                 0
##      0.0000000942663046181582                   0    0                 0
##      0.0381424863643358                         0    0                 0
##      0.0395235614826762                         0    0                 0
##      0.0398504564629362                         0    0                 0
##      0.0449831541922517                         0    0                 0
##      0.150208567676068                          0    0                 0
##      0.291704657263826                          0    0                 0
##      0.31263158525612                           0    0                 0
##      0.313581394222809                          0    0                 0
##      0.399450114450523                          0    0                 0
##      0.419739887455571                          0    0                 0
##      0.425358901761228                          0    0                 0
##      0.594035429893685                          0    0                 0
##      0.671638488556335                          0    0                 0
##      0.688092298985074                          0    0                 0
##      0.806600378227794                          0    0                 0
##      0.867455094638368                          0    0                 0
##      0.897003448844096                          0    0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.289583333333333 0.371527777777778
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.409722222222222 0.416666666666667 0.5 0.55625
##      0.000000000123720820519974                 0                 0   0       0
##      0.0000000142143709248919                   0                 0   0       0
##      0.0000000203570784591136                   0                 0   0       0
##      0.0000000942663046181582                   0                 0   0       0
##      0.0381424863643358                         0                 0   0       0
##      0.0395235614826762                         0                 0   0       0
##      0.0398504564629362                         0                 0   0       0
##      0.0449831541922517                         0                 0   0       0
##      0.150208567676068                          0                 0   0       0
##      0.291704657263826                          0                 0   0       0
##      0.31263158525612                           0                 0   0       0
##      0.313581394222809                          0                 0   0       0
##      0.399450114450523                          0                 0   0       0
##      0.419739887455571                          0                 0   0       0
##      0.425358901761228                          0                 0   0       0
##      0.594035429893685                          0                 0   0       0
##      0.671638488556335                          0                 0   0       0
##      0.688092298985074                          0                 0   0       0
##      0.806600378227794                          0                 0   0       0
##      0.867455094638368                          0                 0   0       0
##      0.897003448844096                          0                 0   0       0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.639583333333333 0.907785087701754 1
##      0.000000000123720820519974                 0                 0 0
##      0.0000000142143709248919                   0                 0 0
##      0.0000000203570784591136                   0                 0 0
##      0.0000000942663046181582                   0                 0 0
##      0.0381424863643358                         0                 0 0
##      0.0395235614826762                         0                 0 0
##      0.0398504564629362                         0                 0 0
##      0.0449831541922517                         0                 0 0
##      0.150208567676068                          0                 0 0
##      0.291704657263826                          0                 0 0
##      0.31263158525612                           0                 0 0
##      0.313581394222809                          0                 0 0
##      0.399450114450523                          0                 0 0
##      0.419739887455571                          0                 0 0
##      0.425358901761228                          0                 0 0
##      0.594035429893685                          0                 0 0
##      0.671638488556335                          0                 0 0
##      0.688092298985074                          0                 0 0
##      0.806600378227794                          0                 0 0
##      0.867455094638368                          0                 0 0
##      0.897003448844096                          0                 0 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 1.34930555555556 4.020833333 6.15
##      0.000000000123720820519974                0           0    0
##      0.0000000142143709248919                  0           0    0
##      0.0000000203570784591136                  0           0    0
##      0.0000000942663046181582                  0           0    0
##      0.0381424863643358                        0           0    0
##      0.0395235614826762                        0           0    0
##      0.0398504564629362                        0           0    0
##      0.0449831541922517                        0           0    0
##      0.150208567676068                         0           0    0
##      0.291704657263826                         0           0    0
##      0.31263158525612                          0           0    0
##      0.313581394222809                         0           0    0
##      0.399450114450523                         0           0    0
##      0.419739887455571                         0           0    0
##      0.425358901761228                         0           0    0
##      0.594035429893685                         0           0    0
##      0.671638488556335                         0           0    0
##      0.688092298985074                         0           0    0
##      0.806600378227794                         0           0    0
##      0.867455094638368                         0           0    0
##      0.897003448844096                         0           0    0
## 
## , , OTT_Time = 0.416666666666667, Snapchat_Time = 0.153472222222222, Instagram_Time = 0
## 
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.125 0.142361111111111 0.152777777777778
##      0.000000000123720820519974     0                 0                 0
##      0.0000000142143709248919       0                 0                 0
##      0.0000000203570784591136       0                 0                 0
##      0.0000000942663046181582       0                 0                 0
##      0.0381424863643358             0                 0                 0
##      0.0395235614826762             0                 0                 0
##      0.0398504564629362             0                 0                 0
##      0.0449831541922517             0                 0                 0
##      0.150208567676068              0                 0                 0
##      0.291704657263826              0                 0                 0
##      0.31263158525612               0                 0                 0
##      0.313581394222809              0                 0                 0
##      0.399450114450523              0                 0                 0
##      0.419739887455571              0                 0                 0
##      0.425358901761228              0                 0                 0
##      0.594035429893685              0                 0                 0
##      0.671638488556335              0                 0                 0
##      0.688092298985074              0                 0                 0
##      0.806600378227794              0                 0                 0
##      0.867455094638368              0                 0                 0
##      0.897003448844096              0                 0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.174305555555556 0.208333333333333
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.220833333333333 0.25 0.270833333333333
##      0.000000000123720820519974                 0    0                 0
##      0.0000000142143709248919                   0    0                 0
##      0.0000000203570784591136                   0    0                 0
##      0.0000000942663046181582                   0    0                 0
##      0.0381424863643358                         0    0                 0
##      0.0395235614826762                         0    0                 0
##      0.0398504564629362                         0    0                 0
##      0.0449831541922517                         0    0                 0
##      0.150208567676068                          0    0                 0
##      0.291704657263826                          0    0                 0
##      0.31263158525612                           0    0                 0
##      0.313581394222809                          0    0                 0
##      0.399450114450523                          0    0                 0
##      0.419739887455571                          0    0                 0
##      0.425358901761228                          0    0                 0
##      0.594035429893685                          0    0                 0
##      0.671638488556335                          0    0                 0
##      0.688092298985074                          0    0                 0
##      0.806600378227794                          0    0                 0
##      0.867455094638368                          0    0                 0
##      0.897003448844096                          0    0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.289583333333333 0.371527777777778
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.409722222222222 0.416666666666667 0.5 0.55625
##      0.000000000123720820519974                 0                 0   0       0
##      0.0000000142143709248919                   0                 0   0       0
##      0.0000000203570784591136                   0                 0   0       0
##      0.0000000942663046181582                   0                 0   0       0
##      0.0381424863643358                         0                 0   0       0
##      0.0395235614826762                         0                 0   0       0
##      0.0398504564629362                         0                 0   0       0
##      0.0449831541922517                         0                 0   0       0
##      0.150208567676068                          0                 0   0       0
##      0.291704657263826                          0                 0   0       0
##      0.31263158525612                           0                 0   0       0
##      0.313581394222809                          0                 0   0       0
##      0.399450114450523                          0                 0   0       0
##      0.419739887455571                          0                 0   0       0
##      0.425358901761228                          0                 0   0       0
##      0.594035429893685                          0                 0   0       0
##      0.671638488556335                          0                 0   0       0
##      0.688092298985074                          0                 0   0       0
##      0.806600378227794                          0                 0   0       0
##      0.867455094638368                          0                 0   0       0
##      0.897003448844096                          0                 0   0       0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.639583333333333 0.907785087701754 1
##      0.000000000123720820519974                 0                 0 0
##      0.0000000142143709248919                   0                 0 0
##      0.0000000203570784591136                   0                 0 0
##      0.0000000942663046181582                   0                 0 0
##      0.0381424863643358                         0                 0 0
##      0.0395235614826762                         0                 0 0
##      0.0398504564629362                         0                 0 0
##      0.0449831541922517                         0                 0 0
##      0.150208567676068                          0                 0 0
##      0.291704657263826                          0                 0 0
##      0.31263158525612                           0                 0 0
##      0.313581394222809                          0                 0 0
##      0.399450114450523                          0                 0 0
##      0.419739887455571                          0                 0 0
##      0.425358901761228                          0                 0 0
##      0.594035429893685                          0                 0 0
##      0.671638488556335                          0                 0 0
##      0.688092298985074                          0                 0 0
##      0.806600378227794                          0                 0 0
##      0.867455094638368                          0                 0 0
##      0.897003448844096                          0                 0 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 1.34930555555556 4.020833333 6.15
##      0.000000000123720820519974                0           0    0
##      0.0000000142143709248919                  0           0    0
##      0.0000000203570784591136                  0           0    0
##      0.0000000942663046181582                  0           0    0
##      0.0381424863643358                        0           0    0
##      0.0395235614826762                        0           0    0
##      0.0398504564629362                        0           0    0
##      0.0449831541922517                        0           0    0
##      0.150208567676068                         0           0    0
##      0.291704657263826                         0           0    0
##      0.31263158525612                          0           0    0
##      0.313581394222809                         0           0    0
##      0.399450114450523                         0           0    0
##      0.419739887455571                         0           0    0
##      0.425358901761228                         0           0    0
##      0.594035429893685                         0           0    0
##      0.671638488556335                         0           0    0
##      0.688092298985074                         0           0    0
##      0.806600378227794                         0           0    0
##      0.867455094638368                         0           0    0
##      0.897003448844096                         0           0    0
## 
## , , OTT_Time = 0.5104166667, Snapchat_Time = 0.153472222222222, Instagram_Time = 0
## 
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.125 0.142361111111111 0.152777777777778
##      0.000000000123720820519974     0                 0                 0
##      0.0000000142143709248919       0                 0                 0
##      0.0000000203570784591136       0                 0                 0
##      0.0000000942663046181582       0                 0                 0
##      0.0381424863643358             0                 0                 0
##      0.0395235614826762             0                 0                 0
##      0.0398504564629362             0                 0                 0
##      0.0449831541922517             0                 0                 0
##      0.150208567676068              0                 0                 0
##      0.291704657263826              0                 0                 0
##      0.31263158525612               0                 0                 0
##      0.313581394222809              0                 0                 0
##      0.399450114450523              0                 0                 0
##      0.419739887455571              0                 0                 0
##      0.425358901761228              0                 0                 0
##      0.594035429893685              0                 0                 0
##      0.671638488556335              0                 0                 0
##      0.688092298985074              0                 0                 0
##      0.806600378227794              0                 0                 0
##      0.867455094638368              0                 0                 0
##      0.897003448844096              0                 0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.174305555555556 0.208333333333333
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.220833333333333 0.25 0.270833333333333
##      0.000000000123720820519974                 0    0                 0
##      0.0000000142143709248919                   0    0                 0
##      0.0000000203570784591136                   0    0                 0
##      0.0000000942663046181582                   0    0                 0
##      0.0381424863643358                         0    0                 0
##      0.0395235614826762                         0    0                 0
##      0.0398504564629362                         0    0                 0
##      0.0449831541922517                         0    0                 0
##      0.150208567676068                          0    0                 0
##      0.291704657263826                          0    0                 0
##      0.31263158525612                           0    0                 0
##      0.313581394222809                          0    0                 0
##      0.399450114450523                          0    0                 0
##      0.419739887455571                          0    0                 0
##      0.425358901761228                          0    0                 0
##      0.594035429893685                          0    0                 0
##      0.671638488556335                          0    0                 0
##      0.688092298985074                          0    0                 0
##      0.806600378227794                          0    0                 0
##      0.867455094638368                          0    0                 0
##      0.897003448844096                          0    0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.289583333333333 0.371527777777778
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.409722222222222 0.416666666666667 0.5 0.55625
##      0.000000000123720820519974                 0                 0   0       0
##      0.0000000142143709248919                   0                 0   0       0
##      0.0000000203570784591136                   0                 0   0       0
##      0.0000000942663046181582                   0                 0   0       0
##      0.0381424863643358                         0                 0   0       0
##      0.0395235614826762                         0                 0   0       0
##      0.0398504564629362                         0                 0   0       0
##      0.0449831541922517                         0                 0   0       0
##      0.150208567676068                          0                 0   0       0
##      0.291704657263826                          0                 0   0       0
##      0.31263158525612                           0                 0   0       0
##      0.313581394222809                          0                 0   0       0
##      0.399450114450523                          0                 0   0       0
##      0.419739887455571                          0                 0   0       0
##      0.425358901761228                          0                 0   0       0
##      0.594035429893685                          0                 0   0       0
##      0.671638488556335                          0                 0   0       0
##      0.688092298985074                          0                 0   0       0
##      0.806600378227794                          0                 0   0       0
##      0.867455094638368                          0                 0   0       0
##      0.897003448844096                          0                 0   0       0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.639583333333333 0.907785087701754 1
##      0.000000000123720820519974                 0                 0 0
##      0.0000000142143709248919                   0                 0 0
##      0.0000000203570784591136                   0                 0 0
##      0.0000000942663046181582                   0                 0 0
##      0.0381424863643358                         0                 0 0
##      0.0395235614826762                         0                 0 0
##      0.0398504564629362                         0                 0 0
##      0.0449831541922517                         0                 0 0
##      0.150208567676068                          0                 0 0
##      0.291704657263826                          0                 0 0
##      0.31263158525612                           0                 0 0
##      0.313581394222809                          0                 0 0
##      0.399450114450523                          0                 0 0
##      0.419739887455571                          0                 0 0
##      0.425358901761228                          0                 0 0
##      0.594035429893685                          0                 0 0
##      0.671638488556335                          0                 0 0
##      0.688092298985074                          0                 0 0
##      0.806600378227794                          0                 0 0
##      0.867455094638368                          0                 0 0
##      0.897003448844096                          0                 0 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 1.34930555555556 4.020833333 6.15
##      0.000000000123720820519974                0           0    0
##      0.0000000142143709248919                  0           0    0
##      0.0000000203570784591136                  0           0    0
##      0.0000000942663046181582                  0           0    0
##      0.0381424863643358                        0           0    0
##      0.0395235614826762                        0           0    0
##      0.0398504564629362                        0           0    0
##      0.0449831541922517                        0           0    0
##      0.150208567676068                         0           0    0
##      0.291704657263826                         0           0    0
##      0.31263158525612                          0           0    0
##      0.313581394222809                         0           0    0
##      0.399450114450523                         0           0    0
##      0.419739887455571                         0           0    0
##      0.425358901761228                         0           0    0
##      0.594035429893685                         0           0    0
##      0.671638488556335                         0           0    0
##      0.688092298985074                         0           0    0
##      0.806600378227794                         0           0    0
##      0.867455094638368                         0           0    0
##      0.897003448844096                         0           0    0
## 
## , , OTT_Time = 1.44460470085726, Snapchat_Time = 0.153472222222222, Instagram_Time = 0
## 
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.125 0.142361111111111 0.152777777777778
##      0.000000000123720820519974     0                 0                 0
##      0.0000000142143709248919       0                 0                 0
##      0.0000000203570784591136       0                 0                 0
##      0.0000000942663046181582       0                 0                 0
##      0.0381424863643358             0                 0                 0
##      0.0395235614826762             0                 0                 0
##      0.0398504564629362             0                 0                 0
##      0.0449831541922517             0                 0                 0
##      0.150208567676068              0                 0                 0
##      0.291704657263826              0                 0                 0
##      0.31263158525612               0                 0                 0
##      0.313581394222809              0                 0                 0
##      0.399450114450523              0                 0                 0
##      0.419739887455571              0                 0                 0
##      0.425358901761228              0                 0                 0
##      0.594035429893685              0                 0                 0
##      0.671638488556335              0                 0                 0
##      0.688092298985074              0                 0                 0
##      0.806600378227794              0                 0                 0
##      0.867455094638368              0                 0                 0
##      0.897003448844096              0                 0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.174305555555556 0.208333333333333
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.220833333333333 0.25 0.270833333333333
##      0.000000000123720820519974                 0    0                 0
##      0.0000000142143709248919                   0    0                 0
##      0.0000000203570784591136                   0    0                 0
##      0.0000000942663046181582                   0    0                 0
##      0.0381424863643358                         0    0                 0
##      0.0395235614826762                         0    0                 0
##      0.0398504564629362                         0    0                 0
##      0.0449831541922517                         0    0                 0
##      0.150208567676068                          0    0                 0
##      0.291704657263826                          0    0                 0
##      0.31263158525612                           0    0                 0
##      0.313581394222809                          0    0                 0
##      0.399450114450523                          0    0                 0
##      0.419739887455571                          0    0                 0
##      0.425358901761228                          0    0                 0
##      0.594035429893685                          0    0                 0
##      0.671638488556335                          0    0                 0
##      0.688092298985074                          0    0                 0
##      0.806600378227794                          0    0                 0
##      0.867455094638368                          0    0                 0
##      0.897003448844096                          0    0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.289583333333333 0.371527777777778
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.409722222222222 0.416666666666667 0.5 0.55625
##      0.000000000123720820519974                 0                 0   0       0
##      0.0000000142143709248919                   0                 0   0       0
##      0.0000000203570784591136                   0                 0   0       0
##      0.0000000942663046181582                   0                 0   0       0
##      0.0381424863643358                         0                 0   0       0
##      0.0395235614826762                         0                 0   0       0
##      0.0398504564629362                         0                 0   0       0
##      0.0449831541922517                         0                 0   0       0
##      0.150208567676068                          0                 0   0       0
##      0.291704657263826                          0                 0   0       0
##      0.31263158525612                           0                 0   0       0
##      0.313581394222809                          0                 0   0       0
##      0.399450114450523                          0                 0   0       0
##      0.419739887455571                          0                 0   0       0
##      0.425358901761228                          0                 0   0       0
##      0.594035429893685                          0                 0   0       0
##      0.671638488556335                          0                 0   0       0
##      0.688092298985074                          0                 0   0       0
##      0.806600378227794                          0                 0   0       0
##      0.867455094638368                          0                 0   0       0
##      0.897003448844096                          0                 0   0       0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.639583333333333 0.907785087701754 1
##      0.000000000123720820519974                 0                 0 0
##      0.0000000142143709248919                   0                 0 0
##      0.0000000203570784591136                   0                 0 0
##      0.0000000942663046181582                   0                 0 0
##      0.0381424863643358                         0                 0 0
##      0.0395235614826762                         0                 0 0
##      0.0398504564629362                         0                 0 0
##      0.0449831541922517                         0                 0 0
##      0.150208567676068                          0                 0 0
##      0.291704657263826                          0                 0 0
##      0.31263158525612                           0                 0 0
##      0.313581394222809                          0                 0 0
##      0.399450114450523                          0                 0 0
##      0.419739887455571                          0                 0 0
##      0.425358901761228                          0                 0 0
##      0.594035429893685                          0                 0 0
##      0.671638488556335                          0                 0 0
##      0.688092298985074                          0                 0 0
##      0.806600378227794                          0                 0 0
##      0.867455094638368                          0                 0 0
##      0.897003448844096                          0                 0 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 1.34930555555556 4.020833333 6.15
##      0.000000000123720820519974                0           0    0
##      0.0000000142143709248919                  0           0    0
##      0.0000000203570784591136                  0           0    0
##      0.0000000942663046181582                  0           0    0
##      0.0381424863643358                        0           0    0
##      0.0395235614826762                        0           0    0
##      0.0398504564629362                        0           0    0
##      0.0449831541922517                        0           0    0
##      0.150208567676068                         0           0    0
##      0.291704657263826                         0           0    0
##      0.31263158525612                          0           0    0
##      0.313581394222809                         0           0    0
##      0.399450114450523                         0           0    0
##      0.419739887455571                         0           0    0
##      0.425358901761228                         0           0    0
##      0.594035429893685                         0           0    0
##      0.671638488556335                         0           0    0
##      0.688092298985074                         0           0    0
##      0.806600378227794                         0           0    0
##      0.867455094638368                         0           0    0
##      0.897003448844096                         0           0    0
## 
## , , OTT_Time = 3, Snapchat_Time = 0.153472222222222, Instagram_Time = 0
## 
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.125 0.142361111111111 0.152777777777778
##      0.000000000123720820519974     0                 0                 0
##      0.0000000142143709248919       0                 0                 0
##      0.0000000203570784591136       0                 0                 0
##      0.0000000942663046181582       0                 0                 0
##      0.0381424863643358             0                 0                 0
##      0.0395235614826762             0                 0                 0
##      0.0398504564629362             0                 0                 0
##      0.0449831541922517             0                 0                 0
##      0.150208567676068              0                 0                 0
##      0.291704657263826              0                 0                 0
##      0.31263158525612               0                 0                 0
##      0.313581394222809              0                 0                 0
##      0.399450114450523              0                 0                 0
##      0.419739887455571              0                 0                 0
##      0.425358901761228              0                 0                 0
##      0.594035429893685              0                 0                 0
##      0.671638488556335              0                 0                 0
##      0.688092298985074              0                 0                 0
##      0.806600378227794              0                 0                 0
##      0.867455094638368              0                 0                 0
##      0.897003448844096              0                 0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.174305555555556 0.208333333333333
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.220833333333333 0.25 0.270833333333333
##      0.000000000123720820519974                 0    0                 0
##      0.0000000142143709248919                   0    0                 0
##      0.0000000203570784591136                   0    0                 0
##      0.0000000942663046181582                   0    0                 0
##      0.0381424863643358                         0    0                 0
##      0.0395235614826762                         0    0                 0
##      0.0398504564629362                         0    0                 0
##      0.0449831541922517                         0    0                 0
##      0.150208567676068                          0    0                 0
##      0.291704657263826                          0    0                 0
##      0.31263158525612                           0    0                 0
##      0.313581394222809                          0    0                 0
##      0.399450114450523                          0    0                 0
##      0.419739887455571                          0    0                 0
##      0.425358901761228                          0    0                 0
##      0.594035429893685                          0    0                 0
##      0.671638488556335                          0    0                 0
##      0.688092298985074                          0    0                 0
##      0.806600378227794                          0    0                 0
##      0.867455094638368                          0    0                 0
##      0.897003448844096                          0    0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.289583333333333 0.371527777777778
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.409722222222222 0.416666666666667 0.5 0.55625
##      0.000000000123720820519974                 0                 0   0       0
##      0.0000000142143709248919                   0                 0   0       0
##      0.0000000203570784591136                   0                 0   0       0
##      0.0000000942663046181582                   0                 0   0       0
##      0.0381424863643358                         0                 0   0       0
##      0.0395235614826762                         0                 0   0       0
##      0.0398504564629362                         0                 0   0       0
##      0.0449831541922517                         0                 0   0       0
##      0.150208567676068                          0                 0   0       0
##      0.291704657263826                          0                 0   0       0
##      0.31263158525612                           0                 0   0       0
##      0.313581394222809                          0                 0   0       0
##      0.399450114450523                          0                 0   0       0
##      0.419739887455571                          0                 0   0       0
##      0.425358901761228                          0                 0   0       0
##      0.594035429893685                          0                 0   0       0
##      0.671638488556335                          0                 0   0       0
##      0.688092298985074                          0                 0   0       0
##      0.806600378227794                          0                 0   0       0
##      0.867455094638368                          0                 0   0       0
##      0.897003448844096                          0                 0   0       0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.639583333333333 0.907785087701754 1
##      0.000000000123720820519974                 0                 0 0
##      0.0000000142143709248919                   0                 0 0
##      0.0000000203570784591136                   0                 0 0
##      0.0000000942663046181582                   0                 0 0
##      0.0381424863643358                         0                 0 0
##      0.0395235614826762                         0                 0 0
##      0.0398504564629362                         0                 0 0
##      0.0449831541922517                         0                 0 0
##      0.150208567676068                          0                 0 0
##      0.291704657263826                          0                 0 0
##      0.31263158525612                           0                 0 0
##      0.313581394222809                          0                 0 0
##      0.399450114450523                          0                 0 0
##      0.419739887455571                          0                 0 0
##      0.425358901761228                          0                 0 0
##      0.594035429893685                          0                 0 0
##      0.671638488556335                          0                 0 0
##      0.688092298985074                          0                 0 0
##      0.806600378227794                          0                 0 0
##      0.867455094638368                          0                 0 0
##      0.897003448844096                          0                 0 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 1.34930555555556 4.020833333 6.15
##      0.000000000123720820519974                0           0    0
##      0.0000000142143709248919                  0           0    0
##      0.0000000203570784591136                  0           0    0
##      0.0000000942663046181582                  0           0    0
##      0.0381424863643358                        0           0    0
##      0.0395235614826762                        0           0    0
##      0.0398504564629362                        0           0    0
##      0.0449831541922517                        0           0    0
##      0.150208567676068                         0           0    0
##      0.291704657263826                         0           0    0
##      0.31263158525612                          0           0    0
##      0.313581394222809                         0           0    0
##      0.399450114450523                         0           0    0
##      0.419739887455571                         0           0    0
##      0.425358901761228                         0           0    0
##      0.594035429893685                         0           0    0
##      0.671638488556335                         0           0    0
##      0.688092298985074                         0           0    0
##      0.806600378227794                         0           0    0
##      0.867455094638368                         0           0    0
##      0.897003448844096                         0           0    0
## 
## , , OTT_Time = 14.5, Snapchat_Time = 0.153472222222222, Instagram_Time = 0
## 
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.125 0.142361111111111 0.152777777777778
##      0.000000000123720820519974     0                 0                 0
##      0.0000000142143709248919       0                 0                 0
##      0.0000000203570784591136       0                 0                 0
##      0.0000000942663046181582       0                 0                 0
##      0.0381424863643358             0                 0                 0
##      0.0395235614826762             0                 0                 0
##      0.0398504564629362             0                 0                 0
##      0.0449831541922517             0                 0                 0
##      0.150208567676068              0                 0                 0
##      0.291704657263826              0                 0                 0
##      0.31263158525612               0                 0                 0
##      0.313581394222809              0                 0                 0
##      0.399450114450523              0                 0                 0
##      0.419739887455571              0                 0                 0
##      0.425358901761228              0                 0                 0
##      0.594035429893685              0                 0                 0
##      0.671638488556335              0                 0                 0
##      0.688092298985074              0                 0                 0
##      0.806600378227794              0                 0                 0
##      0.867455094638368              0                 0                 0
##      0.897003448844096              0                 0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.174305555555556 0.208333333333333
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.220833333333333 0.25 0.270833333333333
##      0.000000000123720820519974                 0    0                 0
##      0.0000000142143709248919                   0    0                 0
##      0.0000000203570784591136                   0    0                 0
##      0.0000000942663046181582                   0    0                 0
##      0.0381424863643358                         0    0                 0
##      0.0395235614826762                         0    0                 0
##      0.0398504564629362                         0    0                 0
##      0.0449831541922517                         0    0                 0
##      0.150208567676068                          0    0                 0
##      0.291704657263826                          0    0                 0
##      0.31263158525612                           0    0                 0
##      0.313581394222809                          0    0                 0
##      0.399450114450523                          0    0                 0
##      0.419739887455571                          0    0                 0
##      0.425358901761228                          0    0                 0
##      0.594035429893685                          0    0                 0
##      0.671638488556335                          0    0                 0
##      0.688092298985074                          0    0                 0
##      0.806600378227794                          0    0                 0
##      0.867455094638368                          0    0                 0
##      0.897003448844096                          0    0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.289583333333333 0.371527777777778
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.409722222222222 0.416666666666667 0.5 0.55625
##      0.000000000123720820519974                 0                 0   0       0
##      0.0000000142143709248919                   0                 0   0       0
##      0.0000000203570784591136                   0                 0   0       0
##      0.0000000942663046181582                   0                 0   0       0
##      0.0381424863643358                         0                 0   0       0
##      0.0395235614826762                         0                 0   0       0
##      0.0398504564629362                         0                 0   0       0
##      0.0449831541922517                         0                 0   0       0
##      0.150208567676068                          0                 0   0       0
##      0.291704657263826                          0                 0   0       0
##      0.31263158525612                           0                 0   0       0
##      0.313581394222809                          0                 0   0       0
##      0.399450114450523                          0                 0   0       0
##      0.419739887455571                          0                 0   0       0
##      0.425358901761228                          0                 0   0       0
##      0.594035429893685                          0                 0   0       0
##      0.671638488556335                          0                 0   0       0
##      0.688092298985074                          0                 0   0       0
##      0.806600378227794                          0                 0   0       0
##      0.867455094638368                          0                 0   0       0
##      0.897003448844096                          0                 0   0       0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.639583333333333 0.907785087701754 1
##      0.000000000123720820519974                 0                 0 0
##      0.0000000142143709248919                   0                 0 0
##      0.0000000203570784591136                   0                 0 0
##      0.0000000942663046181582                   0                 0 0
##      0.0381424863643358                         0                 0 0
##      0.0395235614826762                         0                 0 0
##      0.0398504564629362                         0                 0 0
##      0.0449831541922517                         0                 0 0
##      0.150208567676068                          0                 0 0
##      0.291704657263826                          0                 0 0
##      0.31263158525612                           0                 0 0
##      0.313581394222809                          0                 0 0
##      0.399450114450523                          0                 0 0
##      0.419739887455571                          0                 0 0
##      0.425358901761228                          0                 0 0
##      0.594035429893685                          0                 0 0
##      0.671638488556335                          0                 0 0
##      0.688092298985074                          0                 0 0
##      0.806600378227794                          0                 0 0
##      0.867455094638368                          0                 0 0
##      0.897003448844096                          0                 0 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 1.34930555555556 4.020833333 6.15
##      0.000000000123720820519974                0           0    0
##      0.0000000142143709248919                  0           0    0
##      0.0000000203570784591136                  0           0    0
##      0.0000000942663046181582                  0           0    0
##      0.0381424863643358                        0           0    0
##      0.0395235614826762                        0           0    0
##      0.0398504564629362                        0           0    0
##      0.0449831541922517                        0           0    0
##      0.150208567676068                         0           0    0
##      0.291704657263826                         0           0    0
##      0.31263158525612                          0           0    0
##      0.313581394222809                         0           0    0
##      0.399450114450523                         0           0    0
##      0.419739887455571                         0           0    0
##      0.425358901761228                         0           0    0
##      0.594035429893685                         0           0    0
##      0.671638488556335                         0           0    0
##      0.688092298985074                         0           0    0
##      0.806600378227794                         0           0    0
##      0.867455094638368                         0           0    0
##      0.897003448844096                         0           0    0
## 
## , , OTT_Time = 0, Snapchat_Time = 0.304861111111111, Instagram_Time = 0
## 
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.125 0.142361111111111 0.152777777777778
##      0.000000000123720820519974     0                 0                 0
##      0.0000000142143709248919       0                 0                 0
##      0.0000000203570784591136       0                 0                 0
##      0.0000000942663046181582       0                 0                 0
##      0.0381424863643358             0                 0                 0
##      0.0395235614826762             0                 0                 0
##      0.0398504564629362             0                 0                 0
##      0.0449831541922517             0                 0                 0
##      0.150208567676068              0                 0                 0
##      0.291704657263826              0                 0                 0
##      0.31263158525612               0                 0                 0
##      0.313581394222809              0                 0                 0
##      0.399450114450523              0                 0                 0
##      0.419739887455571              0                 0                 0
##      0.425358901761228              0                 0                 0
##      0.594035429893685              0                 0                 0
##      0.671638488556335              0                 0                 0
##      0.688092298985074              0                 0                 0
##      0.806600378227794              0                 0                 0
##      0.867455094638368              0                 0                 0
##      0.897003448844096              0                 0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.174305555555556 0.208333333333333
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.220833333333333 0.25 0.270833333333333
##      0.000000000123720820519974                 0    0                 0
##      0.0000000142143709248919                   0    0                 0
##      0.0000000203570784591136                   0    0                 0
##      0.0000000942663046181582                   0    0                 0
##      0.0381424863643358                         0    0                 0
##      0.0395235614826762                         0    0                 0
##      0.0398504564629362                         0    0                 0
##      0.0449831541922517                         0    0                 0
##      0.150208567676068                          0    0                 0
##      0.291704657263826                          0    0                 0
##      0.31263158525612                           0    0                 0
##      0.313581394222809                          0    0                 0
##      0.399450114450523                          0    0                 0
##      0.419739887455571                          0    0                 0
##      0.425358901761228                          0    0                 0
##      0.594035429893685                          0    0                 0
##      0.671638488556335                          0    0                 0
##      0.688092298985074                          0    0                 0
##      0.806600378227794                          0    0                 0
##      0.867455094638368                          0    0                 0
##      0.897003448844096                          0    0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.289583333333333 0.371527777777778
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.409722222222222 0.416666666666667 0.5 0.55625
##      0.000000000123720820519974                 0                 0   0       0
##      0.0000000142143709248919                   0                 0   0       0
##      0.0000000203570784591136                   0                 0   0       0
##      0.0000000942663046181582                   0                 0   0       0
##      0.0381424863643358                         0                 0   0       0
##      0.0395235614826762                         0                 0   0       0
##      0.0398504564629362                         0                 0   0       0
##      0.0449831541922517                         0                 0   0       0
##      0.150208567676068                          0                 0   0       0
##      0.291704657263826                          0                 0   0       0
##      0.31263158525612                           0                 0   0       0
##      0.313581394222809                          0                 0   0       0
##      0.399450114450523                          0                 0   0       0
##      0.419739887455571                          0                 0   0       0
##      0.425358901761228                          0                 0   0       0
##      0.594035429893685                          0                 0   0       0
##      0.671638488556335                          0                 0   0       0
##      0.688092298985074                          0                 0   0       0
##      0.806600378227794                          0                 0   0       0
##      0.867455094638368                          0                 0   0       0
##      0.897003448844096                          0                 0   0       0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.639583333333333 0.907785087701754 1
##      0.000000000123720820519974                 0                 0 0
##      0.0000000142143709248919                   0                 0 0
##      0.0000000203570784591136                   0                 0 0
##      0.0000000942663046181582                   0                 0 0
##      0.0381424863643358                         0                 0 0
##      0.0395235614826762                         0                 0 0
##      0.0398504564629362                         0                 0 0
##      0.0449831541922517                         0                 0 0
##      0.150208567676068                          0                 0 0
##      0.291704657263826                          0                 0 0
##      0.31263158525612                           0                 0 0
##      0.313581394222809                          0                 0 0
##      0.399450114450523                          0                 0 0
##      0.419739887455571                          0                 0 0
##      0.425358901761228                          0                 0 0
##      0.594035429893685                          0                 0 0
##      0.671638488556335                          0                 0 0
##      0.688092298985074                          0                 0 0
##      0.806600378227794                          0                 0 0
##      0.867455094638368                          0                 0 0
##      0.897003448844096                          0                 0 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 1.34930555555556 4.020833333 6.15
##      0.000000000123720820519974                0           0    0
##      0.0000000142143709248919                  0           0    0
##      0.0000000203570784591136                  0           0    0
##      0.0000000942663046181582                  0           0    0
##      0.0381424863643358                        0           0    0
##      0.0395235614826762                        0           0    0
##      0.0398504564629362                        0           0    0
##      0.0449831541922517                        0           0    0
##      0.150208567676068                         0           0    0
##      0.291704657263826                         0           0    0
##      0.31263158525612                          0           0    0
##      0.313581394222809                         0           0    0
##      0.399450114450523                         0           0    0
##      0.419739887455571                         0           0    0
##      0.425358901761228                         0           0    0
##      0.594035429893685                         0           0    0
##      0.671638488556335                         0           0    0
##      0.688092298985074                         0           0    0
##      0.806600378227794                         0           0    0
##      0.867455094638368                         0           0    0
##      0.897003448844096                         0           0    0
## 
## , , OTT_Time = 0.102777777777778, Snapchat_Time = 0.304861111111111, Instagram_Time = 0
## 
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.125 0.142361111111111 0.152777777777778
##      0.000000000123720820519974     0                 0                 0
##      0.0000000142143709248919       0                 0                 0
##      0.0000000203570784591136       0                 0                 0
##      0.0000000942663046181582       0                 0                 0
##      0.0381424863643358             0                 0                 0
##      0.0395235614826762             0                 0                 0
##      0.0398504564629362             0                 0                 0
##      0.0449831541922517             0                 0                 0
##      0.150208567676068              0                 0                 0
##      0.291704657263826              0                 0                 0
##      0.31263158525612               0                 0                 0
##      0.313581394222809              0                 0                 0
##      0.399450114450523              0                 0                 0
##      0.419739887455571              0                 0                 0
##      0.425358901761228              0                 0                 0
##      0.594035429893685              0                 0                 0
##      0.671638488556335              0                 0                 0
##      0.688092298985074              0                 0                 0
##      0.806600378227794              0                 0                 0
##      0.867455094638368              0                 0                 0
##      0.897003448844096              0                 0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.174305555555556 0.208333333333333
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.220833333333333 0.25 0.270833333333333
##      0.000000000123720820519974                 0    0                 0
##      0.0000000142143709248919                   0    0                 0
##      0.0000000203570784591136                   0    0                 0
##      0.0000000942663046181582                   0    0                 0
##      0.0381424863643358                         0    0                 0
##      0.0395235614826762                         0    0                 0
##      0.0398504564629362                         0    0                 0
##      0.0449831541922517                         0    0                 0
##      0.150208567676068                          0    0                 0
##      0.291704657263826                          0    0                 0
##      0.31263158525612                           0    0                 0
##      0.313581394222809                          0    0                 0
##      0.399450114450523                          0    0                 0
##      0.419739887455571                          0    0                 0
##      0.425358901761228                          0    0                 0
##      0.594035429893685                          0    0                 0
##      0.671638488556335                          0    0                 0
##      0.688092298985074                          0    0                 0
##      0.806600378227794                          0    0                 0
##      0.867455094638368                          0    0                 0
##      0.897003448844096                          0    0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.289583333333333 0.371527777777778
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.409722222222222 0.416666666666667 0.5 0.55625
##      0.000000000123720820519974                 0                 0   0       0
##      0.0000000142143709248919                   0                 0   0       0
##      0.0000000203570784591136                   0                 0   0       0
##      0.0000000942663046181582                   0                 0   0       0
##      0.0381424863643358                         0                 0   0       0
##      0.0395235614826762                         0                 0   0       0
##      0.0398504564629362                         0                 0   0       0
##      0.0449831541922517                         0                 0   0       0
##      0.150208567676068                          0                 0   0       0
##      0.291704657263826                          0                 0   0       0
##      0.31263158525612                           0                 0   0       0
##      0.313581394222809                          0                 0   0       0
##      0.399450114450523                          0                 0   0       0
##      0.419739887455571                          0                 0   0       0
##      0.425358901761228                          0                 0   0       0
##      0.594035429893685                          0                 0   0       0
##      0.671638488556335                          0                 0   0       0
##      0.688092298985074                          0                 0   0       0
##      0.806600378227794                          0                 0   0       0
##      0.867455094638368                          0                 0   0       0
##      0.897003448844096                          0                 0   0       0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.639583333333333 0.907785087701754 1
##      0.000000000123720820519974                 0                 0 0
##      0.0000000142143709248919                   0                 0 0
##      0.0000000203570784591136                   0                 0 0
##      0.0000000942663046181582                   0                 0 0
##      0.0381424863643358                         0                 0 0
##      0.0395235614826762                         0                 0 0
##      0.0398504564629362                         0                 0 0
##      0.0449831541922517                         0                 0 0
##      0.150208567676068                          0                 0 0
##      0.291704657263826                          0                 0 0
##      0.31263158525612                           0                 0 0
##      0.313581394222809                          0                 0 0
##      0.399450114450523                          0                 0 0
##      0.419739887455571                          0                 0 0
##      0.425358901761228                          0                 0 0
##      0.594035429893685                          0                 0 0
##      0.671638488556335                          0                 0 0
##      0.688092298985074                          0                 0 0
##      0.806600378227794                          0                 0 0
##      0.867455094638368                          0                 0 0
##      0.897003448844096                          0                 0 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 1.34930555555556 4.020833333 6.15
##      0.000000000123720820519974                0           0    0
##      0.0000000142143709248919                  0           0    0
##      0.0000000203570784591136                  0           0    0
##      0.0000000942663046181582                  0           0    0
##      0.0381424863643358                        0           0    0
##      0.0395235614826762                        0           0    0
##      0.0398504564629362                        0           0    0
##      0.0449831541922517                        0           0    0
##      0.150208567676068                         0           0    0
##      0.291704657263826                         0           0    0
##      0.31263158525612                          0           0    0
##      0.313581394222809                         0           0    0
##      0.399450114450523                         0           0    0
##      0.419739887455571                         0           0    0
##      0.425358901761228                         0           0    0
##      0.594035429893685                         0           0    0
##      0.671638488556335                         0           0    0
##      0.688092298985074                         0           0    0
##      0.806600378227794                         0           0    0
##      0.867455094638368                         0           0    0
##      0.897003448844096                         0           0    0
## 
## , , OTT_Time = 0.125, Snapchat_Time = 0.304861111111111, Instagram_Time = 0
## 
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.125 0.142361111111111 0.152777777777778
##      0.000000000123720820519974     0                 0                 0
##      0.0000000142143709248919       0                 0                 0
##      0.0000000203570784591136       0                 0                 0
##      0.0000000942663046181582       0                 0                 0
##      0.0381424863643358             0                 0                 0
##      0.0395235614826762             0                 0                 0
##      0.0398504564629362             0                 0                 0
##      0.0449831541922517             0                 0                 0
##      0.150208567676068              0                 0                 0
##      0.291704657263826              0                 0                 0
##      0.31263158525612               0                 0                 0
##      0.313581394222809              0                 0                 0
##      0.399450114450523              0                 0                 0
##      0.419739887455571              0                 0                 0
##      0.425358901761228              0                 0                 0
##      0.594035429893685              0                 0                 0
##      0.671638488556335              0                 0                 0
##      0.688092298985074              0                 0                 0
##      0.806600378227794              0                 0                 0
##      0.867455094638368              0                 0                 0
##      0.897003448844096              0                 0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.174305555555556 0.208333333333333
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.220833333333333 0.25 0.270833333333333
##      0.000000000123720820519974                 0    0                 0
##      0.0000000142143709248919                   0    0                 0
##      0.0000000203570784591136                   0    0                 0
##      0.0000000942663046181582                   0    0                 0
##      0.0381424863643358                         0    0                 0
##      0.0395235614826762                         0    0                 0
##      0.0398504564629362                         0    0                 0
##      0.0449831541922517                         0    0                 0
##      0.150208567676068                          0    0                 0
##      0.291704657263826                          0    0                 0
##      0.31263158525612                           0    0                 0
##      0.313581394222809                          0    0                 0
##      0.399450114450523                          0    0                 0
##      0.419739887455571                          0    0                 0
##      0.425358901761228                          0    0                 0
##      0.594035429893685                          0    0                 0
##      0.671638488556335                          0    0                 0
##      0.688092298985074                          0    0                 0
##      0.806600378227794                          0    0                 0
##      0.867455094638368                          0    0                 0
##      0.897003448844096                          0    0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.289583333333333 0.371527777777778
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.409722222222222 0.416666666666667 0.5 0.55625
##      0.000000000123720820519974                 0                 0   0       0
##      0.0000000142143709248919                   0                 0   0       0
##      0.0000000203570784591136                   0                 0   0       0
##      0.0000000942663046181582                   0                 0   0       0
##      0.0381424863643358                         0                 0   0       0
##      0.0395235614826762                         0                 0   0       0
##      0.0398504564629362                         0                 0   0       0
##      0.0449831541922517                         0                 0   0       0
##      0.150208567676068                          0                 0   0       0
##      0.291704657263826                          0                 0   0       0
##      0.31263158525612                           0                 0   0       0
##      0.313581394222809                          0                 0   0       0
##      0.399450114450523                          0                 0   0       0
##      0.419739887455571                          0                 0   0       0
##      0.425358901761228                          0                 0   0       0
##      0.594035429893685                          0                 0   0       0
##      0.671638488556335                          0                 0   0       0
##      0.688092298985074                          0                 0   0       0
##      0.806600378227794                          0                 0   0       0
##      0.867455094638368                          0                 0   0       0
##      0.897003448844096                          0                 0   0       0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.639583333333333 0.907785087701754 1
##      0.000000000123720820519974                 0                 0 0
##      0.0000000142143709248919                   0                 0 0
##      0.0000000203570784591136                   0                 0 0
##      0.0000000942663046181582                   0                 0 0
##      0.0381424863643358                         0                 0 0
##      0.0395235614826762                         0                 0 0
##      0.0398504564629362                         0                 0 0
##      0.0449831541922517                         0                 0 0
##      0.150208567676068                          0                 0 0
##      0.291704657263826                          0                 0 0
##      0.31263158525612                           0                 0 0
##      0.313581394222809                          0                 0 0
##      0.399450114450523                          0                 0 0
##      0.419739887455571                          0                 0 0
##      0.425358901761228                          0                 0 0
##      0.594035429893685                          0                 0 0
##      0.671638488556335                          0                 0 0
##      0.688092298985074                          0                 0 0
##      0.806600378227794                          0                 0 0
##      0.867455094638368                          0                 0 0
##      0.897003448844096                          0                 0 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 1.34930555555556 4.020833333 6.15
##      0.000000000123720820519974                0           0    0
##      0.0000000142143709248919                  0           0    0
##      0.0000000203570784591136                  0           0    0
##      0.0000000942663046181582                  0           0    0
##      0.0381424863643358                        0           0    0
##      0.0395235614826762                        0           0    0
##      0.0398504564629362                        0           0    0
##      0.0449831541922517                        0           0    0
##      0.150208567676068                         0           0    0
##      0.291704657263826                         0           0    0
##      0.31263158525612                          0           0    0
##      0.313581394222809                         0           0    0
##      0.399450114450523                         0           0    0
##      0.419739887455571                         0           0    0
##      0.425358901761228                         0           0    0
##      0.594035429893685                         0           0    0
##      0.671638488556335                         0           0    0
##      0.688092298985074                         0           0    0
##      0.806600378227794                         0           0    0
##      0.867455094638368                         0           0    0
##      0.897003448844096                         0           0    0
## 
## , , OTT_Time = 0.416666666666667, Snapchat_Time = 0.304861111111111, Instagram_Time = 0
## 
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.125 0.142361111111111 0.152777777777778
##      0.000000000123720820519974     0                 0                 0
##      0.0000000142143709248919       0                 0                 0
##      0.0000000203570784591136       0                 0                 0
##      0.0000000942663046181582       0                 0                 0
##      0.0381424863643358             0                 0                 0
##      0.0395235614826762             0                 0                 0
##      0.0398504564629362             0                 0                 0
##      0.0449831541922517             0                 0                 0
##      0.150208567676068              0                 0                 0
##      0.291704657263826              0                 0                 0
##      0.31263158525612               0                 0                 0
##      0.313581394222809              0                 0                 0
##      0.399450114450523              0                 0                 0
##      0.419739887455571              0                 0                 0
##      0.425358901761228              0                 0                 0
##      0.594035429893685              0                 0                 0
##      0.671638488556335              0                 0                 0
##      0.688092298985074              0                 0                 0
##      0.806600378227794              0                 0                 0
##      0.867455094638368              0                 0                 0
##      0.897003448844096              0                 0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.174305555555556 0.208333333333333
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.220833333333333 0.25 0.270833333333333
##      0.000000000123720820519974                 0    0                 0
##      0.0000000142143709248919                   0    0                 0
##      0.0000000203570784591136                   0    0                 0
##      0.0000000942663046181582                   0    0                 0
##      0.0381424863643358                         0    0                 0
##      0.0395235614826762                         0    0                 0
##      0.0398504564629362                         0    0                 0
##      0.0449831541922517                         0    0                 0
##      0.150208567676068                          0    0                 0
##      0.291704657263826                          0    0                 0
##      0.31263158525612                           0    0                 0
##      0.313581394222809                          0    0                 0
##      0.399450114450523                          0    0                 0
##      0.419739887455571                          0    0                 0
##      0.425358901761228                          0    0                 0
##      0.594035429893685                          0    0                 0
##      0.671638488556335                          0    0                 0
##      0.688092298985074                          0    0                 0
##      0.806600378227794                          0    0                 0
##      0.867455094638368                          0    0                 0
##      0.897003448844096                          0    0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.289583333333333 0.371527777777778
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.409722222222222 0.416666666666667 0.5 0.55625
##      0.000000000123720820519974                 0                 0   0       0
##      0.0000000142143709248919                   0                 0   0       0
##      0.0000000203570784591136                   0                 0   0       0
##      0.0000000942663046181582                   0                 0   0       0
##      0.0381424863643358                         0                 0   0       0
##      0.0395235614826762                         0                 0   0       0
##      0.0398504564629362                         0                 0   0       0
##      0.0449831541922517                         0                 0   0       0
##      0.150208567676068                          0                 0   0       0
##      0.291704657263826                          0                 0   0       0
##      0.31263158525612                           0                 0   0       0
##      0.313581394222809                          0                 0   0       0
##      0.399450114450523                          0                 0   0       0
##      0.419739887455571                          0                 0   0       0
##      0.425358901761228                          0                 0   0       0
##      0.594035429893685                          0                 0   0       0
##      0.671638488556335                          0                 0   0       0
##      0.688092298985074                          0                 0   0       0
##      0.806600378227794                          0                 0   0       0
##      0.867455094638368                          0                 0   0       0
##      0.897003448844096                          0                 0   0       0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.639583333333333 0.907785087701754 1
##      0.000000000123720820519974                 0                 0 0
##      0.0000000142143709248919                   0                 0 0
##      0.0000000203570784591136                   0                 0 0
##      0.0000000942663046181582                   0                 0 0
##      0.0381424863643358                         0                 0 0
##      0.0395235614826762                         0                 0 0
##      0.0398504564629362                         0                 0 0
##      0.0449831541922517                         0                 0 0
##      0.150208567676068                          0                 0 0
##      0.291704657263826                          0                 0 0
##      0.31263158525612                           0                 0 0
##      0.313581394222809                          0                 0 0
##      0.399450114450523                          0                 0 0
##      0.419739887455571                          0                 0 0
##      0.425358901761228                          0                 0 0
##      0.594035429893685                          0                 0 0
##      0.671638488556335                          0                 0 0
##      0.688092298985074                          0                 0 0
##      0.806600378227794                          0                 0 0
##      0.867455094638368                          0                 0 0
##      0.897003448844096                          0                 0 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 1.34930555555556 4.020833333 6.15
##      0.000000000123720820519974                0           0    0
##      0.0000000142143709248919                  0           0    0
##      0.0000000203570784591136                  0           0    0
##      0.0000000942663046181582                  0           0    0
##      0.0381424863643358                        0           0    0
##      0.0395235614826762                        0           0    0
##      0.0398504564629362                        0           0    0
##      0.0449831541922517                        0           0    0
##      0.150208567676068                         0           0    0
##      0.291704657263826                         0           0    0
##      0.31263158525612                          0           0    0
##      0.313581394222809                         0           0    0
##      0.399450114450523                         0           0    0
##      0.419739887455571                         0           0    0
##      0.425358901761228                         0           0    0
##      0.594035429893685                         0           0    0
##      0.671638488556335                         0           0    0
##      0.688092298985074                         0           0    0
##      0.806600378227794                         0           0    0
##      0.867455094638368                         0           0    0
##      0.897003448844096                         0           0    0
## 
## , , OTT_Time = 0.5104166667, Snapchat_Time = 0.304861111111111, Instagram_Time = 0
## 
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.125 0.142361111111111 0.152777777777778
##      0.000000000123720820519974     0                 0                 0
##      0.0000000142143709248919       0                 0                 0
##      0.0000000203570784591136       0                 0                 0
##      0.0000000942663046181582       0                 0                 0
##      0.0381424863643358             0                 0                 0
##      0.0395235614826762             0                 0                 0
##      0.0398504564629362             0                 0                 0
##      0.0449831541922517             0                 0                 0
##      0.150208567676068              0                 0                 0
##      0.291704657263826              0                 0                 0
##      0.31263158525612               0                 0                 0
##      0.313581394222809              0                 0                 0
##      0.399450114450523              0                 0                 0
##      0.419739887455571              0                 0                 0
##      0.425358901761228              0                 0                 0
##      0.594035429893685              0                 0                 0
##      0.671638488556335              0                 0                 0
##      0.688092298985074              0                 0                 0
##      0.806600378227794              0                 0                 0
##      0.867455094638368              0                 0                 0
##      0.897003448844096              0                 0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.174305555555556 0.208333333333333
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.220833333333333 0.25 0.270833333333333
##      0.000000000123720820519974                 0    0                 0
##      0.0000000142143709248919                   0    0                 0
##      0.0000000203570784591136                   0    0                 0
##      0.0000000942663046181582                   0    0                 0
##      0.0381424863643358                         0    0                 0
##      0.0395235614826762                         0    0                 0
##      0.0398504564629362                         0    0                 0
##      0.0449831541922517                         0    0                 0
##      0.150208567676068                          0    0                 0
##      0.291704657263826                          0    0                 0
##      0.31263158525612                           0    0                 0
##      0.313581394222809                          0    0                 0
##      0.399450114450523                          0    0                 0
##      0.419739887455571                          0    0                 0
##      0.425358901761228                          0    0                 0
##      0.594035429893685                          0    0                 0
##      0.671638488556335                          0    0                 0
##      0.688092298985074                          0    0                 0
##      0.806600378227794                          0    0                 0
##      0.867455094638368                          0    0                 0
##      0.897003448844096                          0    0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.289583333333333 0.371527777777778
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.409722222222222 0.416666666666667 0.5 0.55625
##      0.000000000123720820519974                 0                 0   0       0
##      0.0000000142143709248919                   0                 0   0       0
##      0.0000000203570784591136                   0                 0   0       0
##      0.0000000942663046181582                   0                 0   0       0
##      0.0381424863643358                         0                 0   0       0
##      0.0395235614826762                         0                 0   0       0
##      0.0398504564629362                         0                 0   0       0
##      0.0449831541922517                         0                 0   0       0
##      0.150208567676068                          0                 0   0       0
##      0.291704657263826                          0                 0   0       0
##      0.31263158525612                           0                 0   0       0
##      0.313581394222809                          0                 0   0       0
##      0.399450114450523                          0                 0   0       0
##      0.419739887455571                          0                 0   0       0
##      0.425358901761228                          0                 0   0       0
##      0.594035429893685                          0                 0   0       0
##      0.671638488556335                          0                 0   0       0
##      0.688092298985074                          0                 0   0       0
##      0.806600378227794                          0                 0   0       0
##      0.867455094638368                          0                 0   0       0
##      0.897003448844096                          0                 0   0       0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.639583333333333 0.907785087701754 1
##      0.000000000123720820519974                 0                 0 0
##      0.0000000142143709248919                   0                 0 0
##      0.0000000203570784591136                   0                 0 0
##      0.0000000942663046181582                   0                 0 0
##      0.0381424863643358                         0                 0 0
##      0.0395235614826762                         0                 0 0
##      0.0398504564629362                         0                 0 0
##      0.0449831541922517                         0                 0 0
##      0.150208567676068                          0                 0 0
##      0.291704657263826                          0                 0 0
##      0.31263158525612                           0                 0 0
##      0.313581394222809                          0                 0 0
##      0.399450114450523                          0                 0 0
##      0.419739887455571                          0                 0 0
##      0.425358901761228                          0                 0 0
##      0.594035429893685                          0                 0 0
##      0.671638488556335                          0                 0 0
##      0.688092298985074                          0                 0 0
##      0.806600378227794                          0                 0 0
##      0.867455094638368                          0                 0 0
##      0.897003448844096                          0                 0 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 1.34930555555556 4.020833333 6.15
##      0.000000000123720820519974                0           0    0
##      0.0000000142143709248919                  0           0    0
##      0.0000000203570784591136                  0           0    0
##      0.0000000942663046181582                  0           0    0
##      0.0381424863643358                        0           0    0
##      0.0395235614826762                        0           0    0
##      0.0398504564629362                        0           0    0
##      0.0449831541922517                        0           0    0
##      0.150208567676068                         0           0    0
##      0.291704657263826                         0           0    0
##      0.31263158525612                          0           0    0
##      0.313581394222809                         0           0    0
##      0.399450114450523                         0           0    0
##      0.419739887455571                         0           0    0
##      0.425358901761228                         0           0    0
##      0.594035429893685                         0           0    0
##      0.671638488556335                         0           0    0
##      0.688092298985074                         0           0    0
##      0.806600378227794                         0           0    0
##      0.867455094638368                         0           0    0
##      0.897003448844096                         0           0    0
## 
## , , OTT_Time = 1.44460470085726, Snapchat_Time = 0.304861111111111, Instagram_Time = 0
## 
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.125 0.142361111111111 0.152777777777778
##      0.000000000123720820519974     0                 0                 0
##      0.0000000142143709248919       0                 0                 0
##      0.0000000203570784591136       0                 0                 0
##      0.0000000942663046181582       0                 0                 0
##      0.0381424863643358             0                 0                 0
##      0.0395235614826762             0                 0                 0
##      0.0398504564629362             0                 0                 0
##      0.0449831541922517             0                 0                 0
##      0.150208567676068              0                 0                 0
##      0.291704657263826              0                 0                 0
##      0.31263158525612               0                 0                 0
##      0.313581394222809              0                 0                 0
##      0.399450114450523              0                 0                 0
##      0.419739887455571              0                 0                 0
##      0.425358901761228              0                 0                 0
##      0.594035429893685              0                 0                 0
##      0.671638488556335              0                 0                 0
##      0.688092298985074              0                 0                 0
##      0.806600378227794              0                 0                 0
##      0.867455094638368              0                 0                 0
##      0.897003448844096              0                 0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.174305555555556 0.208333333333333
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.220833333333333 0.25 0.270833333333333
##      0.000000000123720820519974                 0    0                 0
##      0.0000000142143709248919                   0    0                 0
##      0.0000000203570784591136                   0    0                 0
##      0.0000000942663046181582                   0    0                 0
##      0.0381424863643358                         0    0                 0
##      0.0395235614826762                         0    0                 0
##      0.0398504564629362                         0    0                 0
##      0.0449831541922517                         0    0                 0
##      0.150208567676068                          0    0                 0
##      0.291704657263826                          0    0                 0
##      0.31263158525612                           0    0                 0
##      0.313581394222809                          0    0                 0
##      0.399450114450523                          0    0                 0
##      0.419739887455571                          0    0                 0
##      0.425358901761228                          0    0                 0
##      0.594035429893685                          0    0                 0
##      0.671638488556335                          0    0                 0
##      0.688092298985074                          0    0                 0
##      0.806600378227794                          0    0                 0
##      0.867455094638368                          0    0                 0
##      0.897003448844096                          0    0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.289583333333333 0.371527777777778
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.409722222222222 0.416666666666667 0.5 0.55625
##      0.000000000123720820519974                 0                 0   0       0
##      0.0000000142143709248919                   0                 0   0       0
##      0.0000000203570784591136                   0                 0   0       0
##      0.0000000942663046181582                   0                 0   0       0
##      0.0381424863643358                         0                 0   0       0
##      0.0395235614826762                         0                 0   0       0
##      0.0398504564629362                         0                 0   0       0
##      0.0449831541922517                         0                 0   0       0
##      0.150208567676068                          0                 0   0       0
##      0.291704657263826                          0                 0   0       0
##      0.31263158525612                           0                 0   0       0
##      0.313581394222809                          0                 0   0       0
##      0.399450114450523                          0                 0   0       0
##      0.419739887455571                          0                 0   0       0
##      0.425358901761228                          0                 0   0       0
##      0.594035429893685                          0                 0   0       0
##      0.671638488556335                          0                 0   0       0
##      0.688092298985074                          0                 0   0       0
##      0.806600378227794                          0                 0   0       0
##      0.867455094638368                          0                 0   0       0
##      0.897003448844096                          0                 0   0       0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.639583333333333 0.907785087701754 1
##      0.000000000123720820519974                 0                 0 0
##      0.0000000142143709248919                   0                 0 0
##      0.0000000203570784591136                   0                 0 0
##      0.0000000942663046181582                   0                 0 0
##      0.0381424863643358                         0                 0 0
##      0.0395235614826762                         0                 0 0
##      0.0398504564629362                         0                 0 0
##      0.0449831541922517                         0                 0 0
##      0.150208567676068                          0                 0 0
##      0.291704657263826                          0                 0 0
##      0.31263158525612                           0                 0 0
##      0.313581394222809                          0                 0 0
##      0.399450114450523                          0                 0 0
##      0.419739887455571                          0                 0 0
##      0.425358901761228                          0                 0 0
##      0.594035429893685                          0                 0 0
##      0.671638488556335                          0                 0 0
##      0.688092298985074                          0                 0 0
##      0.806600378227794                          0                 0 0
##      0.867455094638368                          0                 0 0
##      0.897003448844096                          0                 0 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 1.34930555555556 4.020833333 6.15
##      0.000000000123720820519974                0           0    0
##      0.0000000142143709248919                  0           0    0
##      0.0000000203570784591136                  0           0    0
##      0.0000000942663046181582                  0           0    0
##      0.0381424863643358                        0           0    0
##      0.0395235614826762                        0           0    0
##      0.0398504564629362                        0           0    0
##      0.0449831541922517                        0           0    0
##      0.150208567676068                         0           0    0
##      0.291704657263826                         0           0    0
##      0.31263158525612                          0           0    0
##      0.313581394222809                         0           0    0
##      0.399450114450523                         0           0    0
##      0.419739887455571                         0           0    0
##      0.425358901761228                         0           0    0
##      0.594035429893685                         0           0    0
##      0.671638488556335                         0           0    0
##      0.688092298985074                         0           0    0
##      0.806600378227794                         0           0    0
##      0.867455094638368                         0           0    0
##      0.897003448844096                         0           0    0
## 
## , , OTT_Time = 3, Snapchat_Time = 0.304861111111111, Instagram_Time = 0
## 
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.125 0.142361111111111 0.152777777777778
##      0.000000000123720820519974     0                 0                 0
##      0.0000000142143709248919       0                 0                 0
##      0.0000000203570784591136       0                 0                 0
##      0.0000000942663046181582       0                 0                 0
##      0.0381424863643358             0                 0                 0
##      0.0395235614826762             0                 0                 0
##      0.0398504564629362             0                 0                 0
##      0.0449831541922517             0                 0                 0
##      0.150208567676068              0                 0                 0
##      0.291704657263826              0                 0                 0
##      0.31263158525612               0                 0                 0
##      0.313581394222809              0                 0                 0
##      0.399450114450523              0                 0                 0
##      0.419739887455571              0                 0                 0
##      0.425358901761228              0                 0                 0
##      0.594035429893685              0                 0                 0
##      0.671638488556335              0                 0                 0
##      0.688092298985074              0                 0                 0
##      0.806600378227794              0                 0                 0
##      0.867455094638368              0                 0                 0
##      0.897003448844096              0                 0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.174305555555556 0.208333333333333
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.220833333333333 0.25 0.270833333333333
##      0.000000000123720820519974                 0    0                 0
##      0.0000000142143709248919                   0    0                 0
##      0.0000000203570784591136                   0    0                 0
##      0.0000000942663046181582                   0    0                 0
##      0.0381424863643358                         0    0                 0
##      0.0395235614826762                         0    0                 0
##      0.0398504564629362                         0    0                 0
##      0.0449831541922517                         0    0                 0
##      0.150208567676068                          0    0                 0
##      0.291704657263826                          0    0                 0
##      0.31263158525612                           0    0                 0
##      0.313581394222809                          0    0                 0
##      0.399450114450523                          0    0                 0
##      0.419739887455571                          0    0                 0
##      0.425358901761228                          0    0                 0
##      0.594035429893685                          0    0                 0
##      0.671638488556335                          0    0                 0
##      0.688092298985074                          0    0                 0
##      0.806600378227794                          0    0                 0
##      0.867455094638368                          0    0                 0
##      0.897003448844096                          0    0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.289583333333333 0.371527777777778
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.409722222222222 0.416666666666667 0.5 0.55625
##      0.000000000123720820519974                 0                 0   0       0
##      0.0000000142143709248919                   0                 0   0       0
##      0.0000000203570784591136                   0                 0   0       0
##      0.0000000942663046181582                   0                 0   0       0
##      0.0381424863643358                         0                 0   0       0
##      0.0395235614826762                         0                 0   0       0
##      0.0398504564629362                         0                 0   0       0
##      0.0449831541922517                         0                 0   0       0
##      0.150208567676068                          0                 0   0       0
##      0.291704657263826                          0                 0   0       0
##      0.31263158525612                           0                 0   0       0
##      0.313581394222809                          0                 0   0       0
##      0.399450114450523                          0                 0   0       0
##      0.419739887455571                          0                 0   0       0
##      0.425358901761228                          0                 0   0       0
##      0.594035429893685                          0                 0   0       0
##      0.671638488556335                          0                 0   0       0
##      0.688092298985074                          0                 0   0       0
##      0.806600378227794                          0                 0   0       0
##      0.867455094638368                          0                 0   0       0
##      0.897003448844096                          0                 0   0       0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.639583333333333 0.907785087701754 1
##      0.000000000123720820519974                 0                 0 0
##      0.0000000142143709248919                   0                 0 0
##      0.0000000203570784591136                   0                 0 0
##      0.0000000942663046181582                   0                 0 0
##      0.0381424863643358                         0                 0 0
##      0.0395235614826762                         0                 0 0
##      0.0398504564629362                         0                 0 0
##      0.0449831541922517                         0                 0 0
##      0.150208567676068                          0                 0 0
##      0.291704657263826                          0                 0 0
##      0.31263158525612                           0                 0 0
##      0.313581394222809                          0                 0 0
##      0.399450114450523                          0                 0 0
##      0.419739887455571                          0                 0 0
##      0.425358901761228                          0                 0 0
##      0.594035429893685                          0                 0 0
##      0.671638488556335                          0                 0 0
##      0.688092298985074                          0                 0 0
##      0.806600378227794                          0                 0 0
##      0.867455094638368                          0                 0 0
##      0.897003448844096                          0                 0 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 1.34930555555556 4.020833333 6.15
##      0.000000000123720820519974                0           0    0
##      0.0000000142143709248919                  0           0    0
##      0.0000000203570784591136                  0           0    0
##      0.0000000942663046181582                  0           0    0
##      0.0381424863643358                        0           0    0
##      0.0395235614826762                        0           0    0
##      0.0398504564629362                        0           0    0
##      0.0449831541922517                        0           0    0
##      0.150208567676068                         0           0    0
##      0.291704657263826                         0           0    0
##      0.31263158525612                          0           0    0
##      0.313581394222809                         0           0    0
##      0.399450114450523                         0           0    0
##      0.419739887455571                         0           0    0
##      0.425358901761228                         0           0    0
##      0.594035429893685                         0           0    0
##      0.671638488556335                         0           0    0
##      0.688092298985074                         0           0    0
##      0.806600378227794                         0           0    0
##      0.867455094638368                         0           0    0
##      0.897003448844096                         0           0    0
## 
## , , OTT_Time = 14.5, Snapchat_Time = 0.304861111111111, Instagram_Time = 0
## 
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.125 0.142361111111111 0.152777777777778
##      0.000000000123720820519974     0                 0                 0
##      0.0000000142143709248919       0                 0                 0
##      0.0000000203570784591136       0                 0                 0
##      0.0000000942663046181582       0                 0                 0
##      0.0381424863643358             0                 0                 0
##      0.0395235614826762             0                 0                 0
##      0.0398504564629362             0                 0                 0
##      0.0449831541922517             0                 0                 0
##      0.150208567676068              0                 0                 0
##      0.291704657263826              0                 0                 0
##      0.31263158525612               0                 0                 0
##      0.313581394222809              0                 0                 0
##      0.399450114450523              0                 0                 0
##      0.419739887455571              0                 0                 0
##      0.425358901761228              0                 0                 0
##      0.594035429893685              0                 0                 0
##      0.671638488556335              0                 0                 0
##      0.688092298985074              0                 0                 0
##      0.806600378227794              0                 0                 0
##      0.867455094638368              0                 0                 0
##      0.897003448844096              0                 0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.174305555555556 0.208333333333333
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.220833333333333 0.25 0.270833333333333
##      0.000000000123720820519974                 0    0                 0
##      0.0000000142143709248919                   0    0                 0
##      0.0000000203570784591136                   0    0                 0
##      0.0000000942663046181582                   0    0                 0
##      0.0381424863643358                         0    0                 0
##      0.0395235614826762                         0    0                 0
##      0.0398504564629362                         0    0                 0
##      0.0449831541922517                         0    0                 0
##      0.150208567676068                          0    0                 0
##      0.291704657263826                          0    0                 0
##      0.31263158525612                           0    0                 0
##      0.313581394222809                          0    0                 0
##      0.399450114450523                          0    0                 0
##      0.419739887455571                          0    0                 0
##      0.425358901761228                          0    0                 0
##      0.594035429893685                          0    0                 0
##      0.671638488556335                          0    0                 0
##      0.688092298985074                          0    0                 0
##      0.806600378227794                          0    0                 0
##      0.867455094638368                          0    0                 0
##      0.897003448844096                          0    0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.289583333333333 0.371527777777778
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.409722222222222 0.416666666666667 0.5 0.55625
##      0.000000000123720820519974                 0                 0   0       0
##      0.0000000142143709248919                   0                 0   0       0
##      0.0000000203570784591136                   0                 0   0       0
##      0.0000000942663046181582                   0                 0   0       0
##      0.0381424863643358                         0                 0   0       0
##      0.0395235614826762                         0                 0   0       0
##      0.0398504564629362                         0                 0   0       0
##      0.0449831541922517                         0                 0   0       0
##      0.150208567676068                          0                 0   0       0
##      0.291704657263826                          0                 0   0       0
##      0.31263158525612                           0                 0   0       0
##      0.313581394222809                          0                 0   0       0
##      0.399450114450523                          0                 0   0       0
##      0.419739887455571                          0                 0   0       0
##      0.425358901761228                          0                 0   0       0
##      0.594035429893685                          0                 0   0       0
##      0.671638488556335                          0                 0   0       0
##      0.688092298985074                          0                 0   0       0
##      0.806600378227794                          0                 0   0       0
##      0.867455094638368                          0                 0   0       0
##      0.897003448844096                          0                 0   0       0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.639583333333333 0.907785087701754 1
##      0.000000000123720820519974                 0                 0 0
##      0.0000000142143709248919                   0                 0 0
##      0.0000000203570784591136                   0                 0 0
##      0.0000000942663046181582                   0                 0 0
##      0.0381424863643358                         0                 0 0
##      0.0395235614826762                         0                 0 0
##      0.0398504564629362                         0                 0 0
##      0.0449831541922517                         0                 0 0
##      0.150208567676068                          0                 0 0
##      0.291704657263826                          0                 0 0
##      0.31263158525612                           0                 0 0
##      0.313581394222809                          0                 0 0
##      0.399450114450523                          0                 0 0
##      0.419739887455571                          0                 0 0
##      0.425358901761228                          0                 0 0
##      0.594035429893685                          0                 0 0
##      0.671638488556335                          0                 0 0
##      0.688092298985074                          0                 0 0
##      0.806600378227794                          0                 0 0
##      0.867455094638368                          0                 0 0
##      0.897003448844096                          0                 0 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 1.34930555555556 4.020833333 6.15
##      0.000000000123720820519974                0           0    0
##      0.0000000142143709248919                  0           0    0
##      0.0000000203570784591136                  0           0    0
##      0.0000000942663046181582                  0           0    0
##      0.0381424863643358                        0           0    0
##      0.0395235614826762                        0           0    0
##      0.0398504564629362                        0           0    0
##      0.0449831541922517                        0           0    0
##      0.150208567676068                         0           0    0
##      0.291704657263826                         0           0    0
##      0.31263158525612                          0           0    0
##      0.313581394222809                         0           0    0
##      0.399450114450523                         0           0    0
##      0.419739887455571                         0           0    0
##      0.425358901761228                         0           0    0
##      0.594035429893685                         0           0    0
##      0.671638488556335                         0           0    0
##      0.688092298985074                         0           0    0
##      0.806600378227794                         0           0    0
##      0.867455094638368                         0           0    0
##      0.897003448844096                         0           0    0
## 
## , , OTT_Time = 0, Snapchat_Time = 0.503124999997222, Instagram_Time = 0
## 
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.125 0.142361111111111 0.152777777777778
##      0.000000000123720820519974     0                 0                 0
##      0.0000000142143709248919       0                 0                 0
##      0.0000000203570784591136       0                 0                 0
##      0.0000000942663046181582       0                 0                 0
##      0.0381424863643358             0                 0                 0
##      0.0395235614826762             0                 0                 0
##      0.0398504564629362             0                 0                 0
##      0.0449831541922517             0                 0                 0
##      0.150208567676068              0                 0                 0
##      0.291704657263826              0                 0                 0
##      0.31263158525612               0                 0                 0
##      0.313581394222809              0                 0                 0
##      0.399450114450523              0                 0                 0
##      0.419739887455571              0                 0                 0
##      0.425358901761228              0                 0                 0
##      0.594035429893685              0                 0                 0
##      0.671638488556335              0                 0                 0
##      0.688092298985074              0                 0                 0
##      0.806600378227794              0                 0                 0
##      0.867455094638368              0                 0                 0
##      0.897003448844096              0                 0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.174305555555556 0.208333333333333
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.220833333333333 0.25 0.270833333333333
##      0.000000000123720820519974                 0    0                 0
##      0.0000000142143709248919                   0    0                 0
##      0.0000000203570784591136                   0    0                 0
##      0.0000000942663046181582                   0    0                 0
##      0.0381424863643358                         0    0                 0
##      0.0395235614826762                         0    0                 0
##      0.0398504564629362                         0    0                 0
##      0.0449831541922517                         0    0                 0
##      0.150208567676068                          0    0                 0
##      0.291704657263826                          0    0                 0
##      0.31263158525612                           0    0                 0
##      0.313581394222809                          0    0                 0
##      0.399450114450523                          0    0                 0
##      0.419739887455571                          0    0                 0
##      0.425358901761228                          0    0                 0
##      0.594035429893685                          0    0                 0
##      0.671638488556335                          0    0                 0
##      0.688092298985074                          0    0                 0
##      0.806600378227794                          0    0                 0
##      0.867455094638368                          0    0                 0
##      0.897003448844096                          0    0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.289583333333333 0.371527777777778
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.409722222222222 0.416666666666667 0.5 0.55625
##      0.000000000123720820519974                 0                 0   0       0
##      0.0000000142143709248919                   0                 0   0       0
##      0.0000000203570784591136                   0                 0   0       0
##      0.0000000942663046181582                   0                 0   0       0
##      0.0381424863643358                         0                 0   0       0
##      0.0395235614826762                         0                 0   0       0
##      0.0398504564629362                         0                 0   0       0
##      0.0449831541922517                         0                 0   0       0
##      0.150208567676068                          0                 0   0       0
##      0.291704657263826                          0                 0   0       0
##      0.31263158525612                           0                 0   0       0
##      0.313581394222809                          0                 0   0       0
##      0.399450114450523                          0                 0   0       0
##      0.419739887455571                          0                 0   0       0
##      0.425358901761228                          0                 0   0       0
##      0.594035429893685                          0                 0   0       0
##      0.671638488556335                          0                 0   0       0
##      0.688092298985074                          0                 0   0       0
##      0.806600378227794                          0                 0   0       0
##      0.867455094638368                          0                 0   0       0
##      0.897003448844096                          0                 0   0       0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.639583333333333 0.907785087701754 1
##      0.000000000123720820519974                 0                 0 0
##      0.0000000142143709248919                   0                 0 0
##      0.0000000203570784591136                   0                 0 0
##      0.0000000942663046181582                   0                 0 0
##      0.0381424863643358                         0                 0 0
##      0.0395235614826762                         0                 0 0
##      0.0398504564629362                         0                 0 0
##      0.0449831541922517                         0                 0 0
##      0.150208567676068                          0                 0 0
##      0.291704657263826                          0                 0 0
##      0.31263158525612                           0                 0 0
##      0.313581394222809                          0                 0 0
##      0.399450114450523                          0                 0 0
##      0.419739887455571                          0                 0 0
##      0.425358901761228                          0                 0 0
##      0.594035429893685                          0                 0 0
##      0.671638488556335                          0                 0 0
##      0.688092298985074                          0                 0 0
##      0.806600378227794                          0                 0 0
##      0.867455094638368                          0                 0 0
##      0.897003448844096                          0                 0 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 1.34930555555556 4.020833333 6.15
##      0.000000000123720820519974                0           0    0
##      0.0000000142143709248919                  0           0    0
##      0.0000000203570784591136                  0           0    0
##      0.0000000942663046181582                  0           0    0
##      0.0381424863643358                        0           0    0
##      0.0395235614826762                        0           0    0
##      0.0398504564629362                        0           0    0
##      0.0449831541922517                        0           0    0
##      0.150208567676068                         0           0    0
##      0.291704657263826                         0           0    0
##      0.31263158525612                          0           0    0
##      0.313581394222809                         0           0    0
##      0.399450114450523                         0           0    0
##      0.419739887455571                         0           0    0
##      0.425358901761228                         0           0    0
##      0.594035429893685                         0           0    0
##      0.671638488556335                         0           0    0
##      0.688092298985074                         0           0    0
##      0.806600378227794                         0           0    0
##      0.867455094638368                         0           0    0
##      0.897003448844096                         0           0    0
## 
## , , OTT_Time = 0.102777777777778, Snapchat_Time = 0.503124999997222, Instagram_Time = 0
## 
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.125 0.142361111111111 0.152777777777778
##      0.000000000123720820519974     0                 0                 0
##      0.0000000142143709248919       0                 0                 0
##      0.0000000203570784591136       0                 0                 0
##      0.0000000942663046181582       0                 0                 0
##      0.0381424863643358             0                 0                 0
##      0.0395235614826762             0                 0                 0
##      0.0398504564629362             0                 0                 0
##      0.0449831541922517             0                 0                 0
##      0.150208567676068              0                 0                 0
##      0.291704657263826              0                 0                 0
##      0.31263158525612               0                 0                 0
##      0.313581394222809              0                 0                 0
##      0.399450114450523              0                 0                 0
##      0.419739887455571              0                 0                 0
##      0.425358901761228              0                 0                 0
##      0.594035429893685              0                 0                 0
##      0.671638488556335              0                 0                 0
##      0.688092298985074              0                 0                 0
##      0.806600378227794              0                 0                 0
##      0.867455094638368              0                 0                 0
##      0.897003448844096              0                 0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.174305555555556 0.208333333333333
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.220833333333333 0.25 0.270833333333333
##      0.000000000123720820519974                 0    0                 0
##      0.0000000142143709248919                   0    0                 0
##      0.0000000203570784591136                   0    0                 0
##      0.0000000942663046181582                   0    0                 0
##      0.0381424863643358                         0    0                 0
##      0.0395235614826762                         0    0                 0
##      0.0398504564629362                         0    0                 0
##      0.0449831541922517                         0    0                 0
##      0.150208567676068                          0    0                 0
##      0.291704657263826                          0    0                 0
##      0.31263158525612                           0    0                 0
##      0.313581394222809                          0    0                 0
##      0.399450114450523                          0    0                 0
##      0.419739887455571                          0    0                 0
##      0.425358901761228                          0    0                 0
##      0.594035429893685                          0    0                 0
##      0.671638488556335                          0    0                 0
##      0.688092298985074                          0    0                 0
##      0.806600378227794                          0    0                 0
##      0.867455094638368                          0    0                 0
##      0.897003448844096                          0    0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.289583333333333 0.371527777777778
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.409722222222222 0.416666666666667 0.5 0.55625
##      0.000000000123720820519974                 0                 0   0       0
##      0.0000000142143709248919                   0                 0   0       0
##      0.0000000203570784591136                   0                 0   0       0
##      0.0000000942663046181582                   0                 0   0       0
##      0.0381424863643358                         0                 0   0       0
##      0.0395235614826762                         0                 0   0       0
##      0.0398504564629362                         0                 0   0       0
##      0.0449831541922517                         0                 0   0       0
##      0.150208567676068                          0                 0   0       0
##      0.291704657263826                          0                 0   0       0
##      0.31263158525612                           0                 0   0       0
##      0.313581394222809                          0                 0   0       0
##      0.399450114450523                          0                 0   0       0
##      0.419739887455571                          0                 0   0       0
##      0.425358901761228                          0                 0   0       0
##      0.594035429893685                          0                 0   0       0
##      0.671638488556335                          0                 0   0       0
##      0.688092298985074                          0                 0   0       0
##      0.806600378227794                          0                 0   0       0
##      0.867455094638368                          0                 0   0       0
##      0.897003448844096                          0                 0   0       0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.639583333333333 0.907785087701754 1
##      0.000000000123720820519974                 0                 0 0
##      0.0000000142143709248919                   0                 0 0
##      0.0000000203570784591136                   0                 0 0
##      0.0000000942663046181582                   0                 0 0
##      0.0381424863643358                         0                 0 0
##      0.0395235614826762                         0                 0 0
##      0.0398504564629362                         0                 0 0
##      0.0449831541922517                         0                 0 0
##      0.150208567676068                          0                 0 0
##      0.291704657263826                          0                 0 0
##      0.31263158525612                           0                 0 0
##      0.313581394222809                          0                 0 0
##      0.399450114450523                          0                 0 0
##      0.419739887455571                          0                 0 0
##      0.425358901761228                          0                 0 0
##      0.594035429893685                          0                 0 0
##      0.671638488556335                          0                 0 0
##      0.688092298985074                          0                 0 0
##      0.806600378227794                          0                 0 0
##      0.867455094638368                          0                 0 0
##      0.897003448844096                          0                 0 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 1.34930555555556 4.020833333 6.15
##      0.000000000123720820519974                0           0    0
##      0.0000000142143709248919                  0           0    0
##      0.0000000203570784591136                  0           0    0
##      0.0000000942663046181582                  0           0    0
##      0.0381424863643358                        0           0    0
##      0.0395235614826762                        0           0    0
##      0.0398504564629362                        0           0    0
##      0.0449831541922517                        0           0    0
##      0.150208567676068                         0           0    0
##      0.291704657263826                         0           0    0
##      0.31263158525612                          0           0    0
##      0.313581394222809                         0           0    0
##      0.399450114450523                         0           0    0
##      0.419739887455571                         0           0    0
##      0.425358901761228                         0           0    0
##      0.594035429893685                         0           0    0
##      0.671638488556335                         0           0    0
##      0.688092298985074                         0           0    0
##      0.806600378227794                         0           0    0
##      0.867455094638368                         0           0    0
##      0.897003448844096                         0           0    0
## 
## , , OTT_Time = 0.125, Snapchat_Time = 0.503124999997222, Instagram_Time = 0
## 
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.125 0.142361111111111 0.152777777777778
##      0.000000000123720820519974     0                 0                 0
##      0.0000000142143709248919       0                 0                 0
##      0.0000000203570784591136       0                 0                 0
##      0.0000000942663046181582       0                 0                 0
##      0.0381424863643358             0                 0                 0
##      0.0395235614826762             0                 0                 0
##      0.0398504564629362             0                 0                 0
##      0.0449831541922517             0                 0                 0
##      0.150208567676068              0                 0                 0
##      0.291704657263826              0                 0                 0
##      0.31263158525612               0                 0                 0
##      0.313581394222809              0                 0                 0
##      0.399450114450523              0                 0                 0
##      0.419739887455571              0                 0                 0
##      0.425358901761228              0                 0                 0
##      0.594035429893685              0                 0                 0
##      0.671638488556335              0                 0                 0
##      0.688092298985074              0                 0                 0
##      0.806600378227794              0                 0                 0
##      0.867455094638368              0                 0                 0
##      0.897003448844096              0                 0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.174305555555556 0.208333333333333
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.220833333333333 0.25 0.270833333333333
##      0.000000000123720820519974                 0    0                 0
##      0.0000000142143709248919                   0    0                 0
##      0.0000000203570784591136                   0    0                 0
##      0.0000000942663046181582                   0    0                 0
##      0.0381424863643358                         0    0                 0
##      0.0395235614826762                         0    0                 0
##      0.0398504564629362                         0    0                 0
##      0.0449831541922517                         0    0                 0
##      0.150208567676068                          0    0                 0
##      0.291704657263826                          0    0                 0
##      0.31263158525612                           0    0                 0
##      0.313581394222809                          0    0                 0
##      0.399450114450523                          0    0                 0
##      0.419739887455571                          0    0                 0
##      0.425358901761228                          0    0                 0
##      0.594035429893685                          0    0                 0
##      0.671638488556335                          0    0                 0
##      0.688092298985074                          0    0                 0
##      0.806600378227794                          0    0                 0
##      0.867455094638368                          0    0                 0
##      0.897003448844096                          0    0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.289583333333333 0.371527777777778
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.409722222222222 0.416666666666667 0.5 0.55625
##      0.000000000123720820519974                 0                 0   0       0
##      0.0000000142143709248919                   0                 0   0       0
##      0.0000000203570784591136                   0                 0   0       0
##      0.0000000942663046181582                   0                 0   0       0
##      0.0381424863643358                         0                 0   0       0
##      0.0395235614826762                         0                 0   0       0
##      0.0398504564629362                         0                 0   0       0
##      0.0449831541922517                         0                 0   0       0
##      0.150208567676068                          0                 0   0       0
##      0.291704657263826                          0                 0   0       0
##      0.31263158525612                           0                 0   0       0
##      0.313581394222809                          0                 0   0       0
##      0.399450114450523                          0                 0   0       0
##      0.419739887455571                          0                 0   0       0
##      0.425358901761228                          0                 0   0       0
##      0.594035429893685                          0                 0   0       0
##      0.671638488556335                          0                 0   0       0
##      0.688092298985074                          0                 0   0       0
##      0.806600378227794                          0                 0   0       0
##      0.867455094638368                          0                 0   0       0
##      0.897003448844096                          0                 0   0       0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.639583333333333 0.907785087701754 1
##      0.000000000123720820519974                 0                 0 0
##      0.0000000142143709248919                   0                 0 0
##      0.0000000203570784591136                   0                 0 0
##      0.0000000942663046181582                   0                 0 0
##      0.0381424863643358                         0                 0 0
##      0.0395235614826762                         0                 0 0
##      0.0398504564629362                         0                 0 0
##      0.0449831541922517                         0                 0 0
##      0.150208567676068                          0                 0 0
##      0.291704657263826                          0                 0 0
##      0.31263158525612                           0                 0 0
##      0.313581394222809                          0                 0 0
##      0.399450114450523                          0                 0 0
##      0.419739887455571                          0                 0 0
##      0.425358901761228                          0                 0 0
##      0.594035429893685                          0                 0 0
##      0.671638488556335                          0                 0 0
##      0.688092298985074                          0                 0 0
##      0.806600378227794                          0                 0 0
##      0.867455094638368                          0                 0 0
##      0.897003448844096                          0                 0 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 1.34930555555556 4.020833333 6.15
##      0.000000000123720820519974                0           0    0
##      0.0000000142143709248919                  0           0    0
##      0.0000000203570784591136                  0           0    0
##      0.0000000942663046181582                  0           0    0
##      0.0381424863643358                        0           0    0
##      0.0395235614826762                        0           0    0
##      0.0398504564629362                        0           0    0
##      0.0449831541922517                        0           0    0
##      0.150208567676068                         0           0    0
##      0.291704657263826                         0           0    0
##      0.31263158525612                          0           0    0
##      0.313581394222809                         0           0    0
##      0.399450114450523                         0           0    0
##      0.419739887455571                         0           0    0
##      0.425358901761228                         0           0    0
##      0.594035429893685                         0           0    0
##      0.671638488556335                         0           0    0
##      0.688092298985074                         0           0    0
##      0.806600378227794                         0           0    0
##      0.867455094638368                         0           0    0
##      0.897003448844096                         0           0    0
## 
## , , OTT_Time = 0.416666666666667, Snapchat_Time = 0.503124999997222, Instagram_Time = 0
## 
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.125 0.142361111111111 0.152777777777778
##      0.000000000123720820519974     0                 0                 0
##      0.0000000142143709248919       0                 0                 0
##      0.0000000203570784591136       0                 0                 0
##      0.0000000942663046181582       0                 0                 0
##      0.0381424863643358             0                 0                 0
##      0.0395235614826762             0                 0                 0
##      0.0398504564629362             0                 0                 0
##      0.0449831541922517             0                 0                 0
##      0.150208567676068              0                 0                 0
##      0.291704657263826              0                 0                 0
##      0.31263158525612               0                 0                 0
##      0.313581394222809              0                 0                 0
##      0.399450114450523              0                 0                 0
##      0.419739887455571              0                 0                 0
##      0.425358901761228              0                 0                 0
##      0.594035429893685              0                 0                 0
##      0.671638488556335              0                 0                 0
##      0.688092298985074              0                 0                 0
##      0.806600378227794              0                 0                 0
##      0.867455094638368              0                 0                 0
##      0.897003448844096              0                 0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.174305555555556 0.208333333333333
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.220833333333333 0.25 0.270833333333333
##      0.000000000123720820519974                 0    0                 0
##      0.0000000142143709248919                   0    0                 0
##      0.0000000203570784591136                   0    0                 0
##      0.0000000942663046181582                   0    0                 0
##      0.0381424863643358                         0    0                 0
##      0.0395235614826762                         0    0                 0
##      0.0398504564629362                         0    0                 0
##      0.0449831541922517                         0    0                 0
##      0.150208567676068                          0    0                 0
##      0.291704657263826                          0    0                 0
##      0.31263158525612                           0    0                 0
##      0.313581394222809                          0    0                 0
##      0.399450114450523                          0    0                 0
##      0.419739887455571                          0    0                 0
##      0.425358901761228                          0    0                 0
##      0.594035429893685                          0    0                 0
##      0.671638488556335                          0    0                 0
##      0.688092298985074                          0    0                 0
##      0.806600378227794                          0    0                 0
##      0.867455094638368                          0    0                 0
##      0.897003448844096                          0    0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.289583333333333 0.371527777777778
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.409722222222222 0.416666666666667 0.5 0.55625
##      0.000000000123720820519974                 0                 0   0       0
##      0.0000000142143709248919                   0                 0   0       0
##      0.0000000203570784591136                   0                 0   0       0
##      0.0000000942663046181582                   0                 0   0       0
##      0.0381424863643358                         0                 0   0       0
##      0.0395235614826762                         0                 0   0       0
##      0.0398504564629362                         0                 0   0       0
##      0.0449831541922517                         0                 0   0       0
##      0.150208567676068                          0                 0   0       0
##      0.291704657263826                          0                 0   0       0
##      0.31263158525612                           0                 0   0       0
##      0.313581394222809                          0                 0   0       0
##      0.399450114450523                          0                 0   0       0
##      0.419739887455571                          0                 0   0       0
##      0.425358901761228                          0                 0   0       0
##      0.594035429893685                          0                 0   0       0
##      0.671638488556335                          0                 0   0       0
##      0.688092298985074                          0                 0   0       0
##      0.806600378227794                          0                 0   0       0
##      0.867455094638368                          0                 0   0       0
##      0.897003448844096                          0                 0   0       0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.639583333333333 0.907785087701754 1
##      0.000000000123720820519974                 0                 0 0
##      0.0000000142143709248919                   0                 0 0
##      0.0000000203570784591136                   0                 0 0
##      0.0000000942663046181582                   0                 0 0
##      0.0381424863643358                         0                 0 0
##      0.0395235614826762                         0                 0 0
##      0.0398504564629362                         0                 0 0
##      0.0449831541922517                         0                 0 0
##      0.150208567676068                          0                 0 0
##      0.291704657263826                          0                 0 0
##      0.31263158525612                           0                 0 0
##      0.313581394222809                          0                 0 0
##      0.399450114450523                          0                 0 0
##      0.419739887455571                          0                 0 0
##      0.425358901761228                          0                 0 0
##      0.594035429893685                          0                 0 0
##      0.671638488556335                          0                 0 0
##      0.688092298985074                          0                 0 0
##      0.806600378227794                          0                 0 0
##      0.867455094638368                          0                 0 0
##      0.897003448844096                          0                 0 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 1.34930555555556 4.020833333 6.15
##      0.000000000123720820519974                0           0    0
##      0.0000000142143709248919                  0           0    0
##      0.0000000203570784591136                  0           0    0
##      0.0000000942663046181582                  0           0    0
##      0.0381424863643358                        0           0    0
##      0.0395235614826762                        0           0    0
##      0.0398504564629362                        0           0    0
##      0.0449831541922517                        0           0    0
##      0.150208567676068                         0           0    0
##      0.291704657263826                         0           0    0
##      0.31263158525612                          0           0    0
##      0.313581394222809                         0           0    0
##      0.399450114450523                         0           0    0
##      0.419739887455571                         0           0    0
##      0.425358901761228                         0           0    0
##      0.594035429893685                         0           0    0
##      0.671638488556335                         0           0    0
##      0.688092298985074                         0           0    0
##      0.806600378227794                         0           0    0
##      0.867455094638368                         0           0    0
##      0.897003448844096                         0           0    0
## 
## , , OTT_Time = 0.5104166667, Snapchat_Time = 0.503124999997222, Instagram_Time = 0
## 
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.125 0.142361111111111 0.152777777777778
##      0.000000000123720820519974     0                 0                 0
##      0.0000000142143709248919       0                 0                 0
##      0.0000000203570784591136       0                 0                 0
##      0.0000000942663046181582       0                 0                 0
##      0.0381424863643358             0                 0                 0
##      0.0395235614826762             0                 0                 0
##      0.0398504564629362             0                 0                 0
##      0.0449831541922517             0                 0                 0
##      0.150208567676068              0                 0                 0
##      0.291704657263826              0                 0                 0
##      0.31263158525612               0                 0                 0
##      0.313581394222809              0                 0                 0
##      0.399450114450523              0                 0                 0
##      0.419739887455571              0                 0                 0
##      0.425358901761228              0                 0                 0
##      0.594035429893685              0                 0                 0
##      0.671638488556335              0                 0                 0
##      0.688092298985074              0                 0                 0
##      0.806600378227794              0                 0                 0
##      0.867455094638368              0                 0                 0
##      0.897003448844096              0                 0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.174305555555556 0.208333333333333
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.220833333333333 0.25 0.270833333333333
##      0.000000000123720820519974                 0    0                 0
##      0.0000000142143709248919                   0    0                 0
##      0.0000000203570784591136                   0    0                 0
##      0.0000000942663046181582                   0    0                 0
##      0.0381424863643358                         0    0                 0
##      0.0395235614826762                         0    0                 0
##      0.0398504564629362                         0    0                 0
##      0.0449831541922517                         0    0                 0
##      0.150208567676068                          0    0                 0
##      0.291704657263826                          0    0                 0
##      0.31263158525612                           0    0                 0
##      0.313581394222809                          0    0                 0
##      0.399450114450523                          0    0                 0
##      0.419739887455571                          0    0                 0
##      0.425358901761228                          0    0                 0
##      0.594035429893685                          0    0                 0
##      0.671638488556335                          0    0                 0
##      0.688092298985074                          0    0                 0
##      0.806600378227794                          0    0                 0
##      0.867455094638368                          0    0                 0
##      0.897003448844096                          0    0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.289583333333333 0.371527777777778
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.409722222222222 0.416666666666667 0.5 0.55625
##      0.000000000123720820519974                 0                 0   0       0
##      0.0000000142143709248919                   0                 0   0       0
##      0.0000000203570784591136                   0                 0   0       0
##      0.0000000942663046181582                   0                 0   0       0
##      0.0381424863643358                         0                 0   0       0
##      0.0395235614826762                         0                 0   0       0
##      0.0398504564629362                         0                 0   0       0
##      0.0449831541922517                         0                 0   0       0
##      0.150208567676068                          0                 0   0       0
##      0.291704657263826                          0                 0   0       0
##      0.31263158525612                           0                 0   0       0
##      0.313581394222809                          0                 0   0       0
##      0.399450114450523                          0                 0   0       0
##      0.419739887455571                          0                 0   0       0
##      0.425358901761228                          0                 0   0       0
##      0.594035429893685                          0                 0   0       0
##      0.671638488556335                          0                 0   0       0
##      0.688092298985074                          0                 0   0       0
##      0.806600378227794                          0                 0   0       0
##      0.867455094638368                          0                 0   0       0
##      0.897003448844096                          0                 0   0       0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.639583333333333 0.907785087701754 1
##      0.000000000123720820519974                 0                 0 0
##      0.0000000142143709248919                   0                 0 0
##      0.0000000203570784591136                   0                 0 0
##      0.0000000942663046181582                   0                 0 0
##      0.0381424863643358                         0                 0 0
##      0.0395235614826762                         0                 0 0
##      0.0398504564629362                         0                 0 0
##      0.0449831541922517                         0                 0 0
##      0.150208567676068                          0                 0 0
##      0.291704657263826                          0                 0 0
##      0.31263158525612                           0                 0 0
##      0.313581394222809                          0                 0 0
##      0.399450114450523                          0                 0 0
##      0.419739887455571                          0                 0 0
##      0.425358901761228                          0                 0 0
##      0.594035429893685                          0                 0 0
##      0.671638488556335                          0                 0 0
##      0.688092298985074                          0                 0 0
##      0.806600378227794                          0                 0 0
##      0.867455094638368                          0                 0 0
##      0.897003448844096                          0                 0 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 1.34930555555556 4.020833333 6.15
##      0.000000000123720820519974                0           0    0
##      0.0000000142143709248919                  0           0    0
##      0.0000000203570784591136                  0           0    0
##      0.0000000942663046181582                  0           0    0
##      0.0381424863643358                        0           0    0
##      0.0395235614826762                        0           0    0
##      0.0398504564629362                        0           0    0
##      0.0449831541922517                        0           0    0
##      0.150208567676068                         0           0    0
##      0.291704657263826                         0           0    0
##      0.31263158525612                          0           0    0
##      0.313581394222809                         0           0    0
##      0.399450114450523                         0           0    0
##      0.419739887455571                         0           0    0
##      0.425358901761228                         0           0    0
##      0.594035429893685                         0           0    0
##      0.671638488556335                         0           0    0
##      0.688092298985074                         0           0    0
##      0.806600378227794                         0           0    0
##      0.867455094638368                         0           0    0
##      0.897003448844096                         0           0    0
## 
## , , OTT_Time = 1.44460470085726, Snapchat_Time = 0.503124999997222, Instagram_Time = 0
## 
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.125 0.142361111111111 0.152777777777778
##      0.000000000123720820519974     0                 0                 0
##      0.0000000142143709248919       0                 0                 0
##      0.0000000203570784591136       0                 0                 0
##      0.0000000942663046181582       0                 0                 0
##      0.0381424863643358             0                 0                 0
##      0.0395235614826762             0                 0                 0
##      0.0398504564629362             0                 0                 0
##      0.0449831541922517             0                 0                 0
##      0.150208567676068              0                 0                 0
##      0.291704657263826              0                 0                 0
##      0.31263158525612               0                 0                 0
##      0.313581394222809              0                 0                 0
##      0.399450114450523              0                 0                 0
##      0.419739887455571              0                 0                 0
##      0.425358901761228              0                 0                 0
##      0.594035429893685              0                 0                 0
##      0.671638488556335              0                 0                 0
##      0.688092298985074              0                 0                 0
##      0.806600378227794              0                 0                 0
##      0.867455094638368              0                 0                 0
##      0.897003448844096              0                 0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.174305555555556 0.208333333333333
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.220833333333333 0.25 0.270833333333333
##      0.000000000123720820519974                 0    0                 0
##      0.0000000142143709248919                   0    0                 0
##      0.0000000203570784591136                   0    0                 0
##      0.0000000942663046181582                   0    0                 0
##      0.0381424863643358                         0    0                 0
##      0.0395235614826762                         0    0                 0
##      0.0398504564629362                         0    0                 0
##      0.0449831541922517                         0    0                 0
##      0.150208567676068                          0    0                 0
##      0.291704657263826                          0    0                 0
##      0.31263158525612                           0    0                 0
##      0.313581394222809                          0    0                 0
##      0.399450114450523                          0    0                 0
##      0.419739887455571                          0    0                 0
##      0.425358901761228                          0    0                 0
##      0.594035429893685                          0    0                 0
##      0.671638488556335                          0    0                 0
##      0.688092298985074                          0    0                 0
##      0.806600378227794                          0    0                 0
##      0.867455094638368                          0    0                 0
##      0.897003448844096                          0    0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.289583333333333 0.371527777777778
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.409722222222222 0.416666666666667 0.5 0.55625
##      0.000000000123720820519974                 0                 0   0       0
##      0.0000000142143709248919                   0                 0   0       0
##      0.0000000203570784591136                   0                 0   0       0
##      0.0000000942663046181582                   0                 0   0       0
##      0.0381424863643358                         0                 0   0       0
##      0.0395235614826762                         0                 0   0       0
##      0.0398504564629362                         0                 0   0       0
##      0.0449831541922517                         0                 0   0       0
##      0.150208567676068                          0                 0   0       0
##      0.291704657263826                          0                 0   0       0
##      0.31263158525612                           0                 0   0       0
##      0.313581394222809                          0                 0   0       0
##      0.399450114450523                          0                 0   0       0
##      0.419739887455571                          0                 0   0       0
##      0.425358901761228                          0                 0   0       0
##      0.594035429893685                          0                 0   0       0
##      0.671638488556335                          0                 0   0       0
##      0.688092298985074                          0                 0   0       0
##      0.806600378227794                          0                 0   0       0
##      0.867455094638368                          0                 0   0       0
##      0.897003448844096                          0                 0   0       0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.639583333333333 0.907785087701754 1
##      0.000000000123720820519974                 0                 0 0
##      0.0000000142143709248919                   0                 0 0
##      0.0000000203570784591136                   0                 0 0
##      0.0000000942663046181582                   0                 0 0
##      0.0381424863643358                         0                 0 0
##      0.0395235614826762                         0                 0 0
##      0.0398504564629362                         0                 0 0
##      0.0449831541922517                         0                 0 0
##      0.150208567676068                          0                 0 0
##      0.291704657263826                          0                 0 0
##      0.31263158525612                           0                 0 0
##      0.313581394222809                          0                 0 0
##      0.399450114450523                          0                 0 0
##      0.419739887455571                          0                 0 0
##      0.425358901761228                          0                 0 0
##      0.594035429893685                          0                 0 0
##      0.671638488556335                          0                 0 0
##      0.688092298985074                          0                 0 0
##      0.806600378227794                          0                 0 0
##      0.867455094638368                          0                 0 0
##      0.897003448844096                          0                 0 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 1.34930555555556 4.020833333 6.15
##      0.000000000123720820519974                0           0    0
##      0.0000000142143709248919                  0           0    0
##      0.0000000203570784591136                  0           0    0
##      0.0000000942663046181582                  0           0    0
##      0.0381424863643358                        0           0    0
##      0.0395235614826762                        0           0    0
##      0.0398504564629362                        0           0    0
##      0.0449831541922517                        0           0    0
##      0.150208567676068                         0           0    0
##      0.291704657263826                         0           0    0
##      0.31263158525612                          0           0    0
##      0.313581394222809                         0           0    0
##      0.399450114450523                         0           0    0
##      0.419739887455571                         0           0    0
##      0.425358901761228                         0           0    0
##      0.594035429893685                         0           0    0
##      0.671638488556335                         0           0    0
##      0.688092298985074                         0           0    0
##      0.806600378227794                         0           0    0
##      0.867455094638368                         0           0    0
##      0.897003448844096                         0           0    0
## 
## , , OTT_Time = 3, Snapchat_Time = 0.503124999997222, Instagram_Time = 0
## 
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.125 0.142361111111111 0.152777777777778
##      0.000000000123720820519974     0                 0                 0
##      0.0000000142143709248919       0                 0                 0
##      0.0000000203570784591136       0                 0                 0
##      0.0000000942663046181582       0                 0                 0
##      0.0381424863643358             0                 0                 0
##      0.0395235614826762             0                 0                 0
##      0.0398504564629362             0                 0                 0
##      0.0449831541922517             0                 0                 0
##      0.150208567676068              0                 0                 0
##      0.291704657263826              0                 0                 0
##      0.31263158525612               0                 0                 0
##      0.313581394222809              0                 0                 0
##      0.399450114450523              0                 0                 0
##      0.419739887455571              0                 0                 0
##      0.425358901761228              0                 0                 0
##      0.594035429893685              0                 0                 0
##      0.671638488556335              0                 0                 0
##      0.688092298985074              0                 0                 0
##      0.806600378227794              0                 0                 0
##      0.867455094638368              0                 0                 0
##      0.897003448844096              0                 0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.174305555555556 0.208333333333333
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.220833333333333 0.25 0.270833333333333
##      0.000000000123720820519974                 0    0                 0
##      0.0000000142143709248919                   0    0                 0
##      0.0000000203570784591136                   0    0                 0
##      0.0000000942663046181582                   0    0                 0
##      0.0381424863643358                         0    0                 0
##      0.0395235614826762                         0    0                 0
##      0.0398504564629362                         0    0                 0
##      0.0449831541922517                         0    0                 0
##      0.150208567676068                          0    0                 0
##      0.291704657263826                          0    0                 0
##      0.31263158525612                           0    0                 0
##      0.313581394222809                          0    0                 0
##      0.399450114450523                          0    0                 0
##      0.419739887455571                          0    0                 0
##      0.425358901761228                          0    0                 0
##      0.594035429893685                          0    0                 0
##      0.671638488556335                          0    0                 0
##      0.688092298985074                          0    0                 0
##      0.806600378227794                          0    0                 0
##      0.867455094638368                          0    0                 0
##      0.897003448844096                          0    0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.289583333333333 0.371527777777778
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.409722222222222 0.416666666666667 0.5 0.55625
##      0.000000000123720820519974                 0                 0   0       0
##      0.0000000142143709248919                   0                 0   0       0
##      0.0000000203570784591136                   0                 0   0       0
##      0.0000000942663046181582                   0                 0   0       0
##      0.0381424863643358                         0                 0   0       0
##      0.0395235614826762                         0                 0   0       0
##      0.0398504564629362                         0                 0   0       0
##      0.0449831541922517                         0                 0   0       0
##      0.150208567676068                          0                 0   0       0
##      0.291704657263826                          0                 0   0       0
##      0.31263158525612                           0                 0   0       0
##      0.313581394222809                          0                 0   0       0
##      0.399450114450523                          0                 0   0       0
##      0.419739887455571                          0                 0   0       0
##      0.425358901761228                          0                 0   0       0
##      0.594035429893685                          0                 0   0       0
##      0.671638488556335                          0                 0   0       0
##      0.688092298985074                          0                 0   0       0
##      0.806600378227794                          0                 0   0       0
##      0.867455094638368                          0                 0   0       0
##      0.897003448844096                          0                 0   0       0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.639583333333333 0.907785087701754 1
##      0.000000000123720820519974                 0                 0 0
##      0.0000000142143709248919                   0                 0 0
##      0.0000000203570784591136                   0                 0 0
##      0.0000000942663046181582                   0                 0 0
##      0.0381424863643358                         0                 0 0
##      0.0395235614826762                         0                 0 0
##      0.0398504564629362                         0                 0 0
##      0.0449831541922517                         0                 0 0
##      0.150208567676068                          0                 0 0
##      0.291704657263826                          0                 0 0
##      0.31263158525612                           0                 0 0
##      0.313581394222809                          0                 0 0
##      0.399450114450523                          0                 0 0
##      0.419739887455571                          0                 0 0
##      0.425358901761228                          0                 0 0
##      0.594035429893685                          0                 0 0
##      0.671638488556335                          0                 0 0
##      0.688092298985074                          0                 0 0
##      0.806600378227794                          0                 0 0
##      0.867455094638368                          0                 0 0
##      0.897003448844096                          0                 0 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 1.34930555555556 4.020833333 6.15
##      0.000000000123720820519974                0           0    0
##      0.0000000142143709248919                  0           0    0
##      0.0000000203570784591136                  0           0    0
##      0.0000000942663046181582                  0           0    0
##      0.0381424863643358                        0           0    0
##      0.0395235614826762                        0           0    0
##      0.0398504564629362                        0           0    0
##      0.0449831541922517                        0           0    0
##      0.150208567676068                         0           0    0
##      0.291704657263826                         0           0    0
##      0.31263158525612                          0           0    0
##      0.313581394222809                         0           0    0
##      0.399450114450523                         0           0    0
##      0.419739887455571                         0           0    0
##      0.425358901761228                         0           0    0
##      0.594035429893685                         0           0    0
##      0.671638488556335                         0           0    0
##      0.688092298985074                         0           0    0
##      0.806600378227794                         0           0    0
##      0.867455094638368                         0           0    0
##      0.897003448844096                         0           0    0
## 
## , , OTT_Time = 14.5, Snapchat_Time = 0.503124999997222, Instagram_Time = 0
## 
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.125 0.142361111111111 0.152777777777778
##      0.000000000123720820519974     0                 0                 0
##      0.0000000142143709248919       0                 0                 0
##      0.0000000203570784591136       0                 0                 0
##      0.0000000942663046181582       0                 0                 0
##      0.0381424863643358             0                 0                 0
##      0.0395235614826762             0                 0                 0
##      0.0398504564629362             0                 0                 0
##      0.0449831541922517             0                 0                 0
##      0.150208567676068              0                 0                 0
##      0.291704657263826              0                 0                 0
##      0.31263158525612               0                 0                 0
##      0.313581394222809              0                 0                 0
##      0.399450114450523              0                 0                 0
##      0.419739887455571              0                 0                 0
##      0.425358901761228              0                 0                 0
##      0.594035429893685              0                 0                 0
##      0.671638488556335              0                 0                 0
##      0.688092298985074              0                 0                 0
##      0.806600378227794              0                 0                 0
##      0.867455094638368              0                 0                 0
##      0.897003448844096              0                 0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.174305555555556 0.208333333333333
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.220833333333333 0.25 0.270833333333333
##      0.000000000123720820519974                 0    0                 0
##      0.0000000142143709248919                   0    0                 0
##      0.0000000203570784591136                   0    0                 0
##      0.0000000942663046181582                   0    0                 0
##      0.0381424863643358                         0    0                 0
##      0.0395235614826762                         0    0                 0
##      0.0398504564629362                         0    0                 0
##      0.0449831541922517                         0    0                 0
##      0.150208567676068                          0    0                 0
##      0.291704657263826                          0    0                 0
##      0.31263158525612                           0    0                 0
##      0.313581394222809                          0    0                 0
##      0.399450114450523                          0    0                 0
##      0.419739887455571                          0    0                 0
##      0.425358901761228                          0    0                 0
##      0.594035429893685                          0    0                 0
##      0.671638488556335                          0    0                 0
##      0.688092298985074                          0    0                 0
##      0.806600378227794                          0    0                 0
##      0.867455094638368                          0    0                 0
##      0.897003448844096                          0    0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.289583333333333 0.371527777777778
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.409722222222222 0.416666666666667 0.5 0.55625
##      0.000000000123720820519974                 0                 0   0       0
##      0.0000000142143709248919                   0                 0   0       0
##      0.0000000203570784591136                   0                 0   0       0
##      0.0000000942663046181582                   0                 0   0       0
##      0.0381424863643358                         0                 0   0       0
##      0.0395235614826762                         0                 0   0       0
##      0.0398504564629362                         0                 0   0       0
##      0.0449831541922517                         0                 0   0       0
##      0.150208567676068                          0                 0   0       0
##      0.291704657263826                          0                 0   0       0
##      0.31263158525612                           0                 0   0       0
##      0.313581394222809                          0                 0   0       0
##      0.399450114450523                          0                 0   0       0
##      0.419739887455571                          0                 0   0       0
##      0.425358901761228                          0                 0   0       0
##      0.594035429893685                          0                 0   0       0
##      0.671638488556335                          0                 0   0       0
##      0.688092298985074                          0                 0   0       0
##      0.806600378227794                          0                 0   0       0
##      0.867455094638368                          0                 0   0       0
##      0.897003448844096                          0                 0   0       0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.639583333333333 0.907785087701754 1
##      0.000000000123720820519974                 0                 0 0
##      0.0000000142143709248919                   0                 0 0
##      0.0000000203570784591136                   0                 0 0
##      0.0000000942663046181582                   0                 0 0
##      0.0381424863643358                         0                 0 0
##      0.0395235614826762                         0                 0 0
##      0.0398504564629362                         0                 0 0
##      0.0449831541922517                         0                 0 0
##      0.150208567676068                          0                 0 0
##      0.291704657263826                          0                 0 0
##      0.31263158525612                           0                 0 0
##      0.313581394222809                          0                 0 0
##      0.399450114450523                          0                 0 0
##      0.419739887455571                          0                 0 0
##      0.425358901761228                          0                 0 0
##      0.594035429893685                          0                 0 0
##      0.671638488556335                          0                 0 0
##      0.688092298985074                          0                 0 0
##      0.806600378227794                          0                 0 0
##      0.867455094638368                          0                 0 0
##      0.897003448844096                          0                 0 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 1.34930555555556 4.020833333 6.15
##      0.000000000123720820519974                0           0    0
##      0.0000000142143709248919                  0           0    0
##      0.0000000203570784591136                  0           0    0
##      0.0000000942663046181582                  0           0    0
##      0.0381424863643358                        0           0    0
##      0.0395235614826762                        0           0    0
##      0.0398504564629362                        0           0    0
##      0.0449831541922517                        0           0    0
##      0.150208567676068                         0           0    0
##      0.291704657263826                         0           0    0
##      0.31263158525612                          0           0    0
##      0.313581394222809                         0           0    0
##      0.399450114450523                         0           0    0
##      0.419739887455571                         0           0    0
##      0.425358901761228                         0           0    0
##      0.594035429893685                         0           0    0
##      0.671638488556335                         0           0    0
##      0.688092298985074                         0           0    0
##      0.806600378227794                         0           0    0
##      0.867455094638368                         0           0    0
##      0.897003448844096                         0           0    0
## 
## , , OTT_Time = 0, Snapchat_Time = 0.6208333333, Instagram_Time = 0
## 
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.125 0.142361111111111 0.152777777777778
##      0.000000000123720820519974     0                 0                 0
##      0.0000000142143709248919       0                 0                 0
##      0.0000000203570784591136       0                 0                 0
##      0.0000000942663046181582       0                 0                 0
##      0.0381424863643358             0                 0                 0
##      0.0395235614826762             0                 0                 0
##      0.0398504564629362             0                 0                 0
##      0.0449831541922517             0                 0                 0
##      0.150208567676068              0                 0                 0
##      0.291704657263826              0                 0                 0
##      0.31263158525612               0                 0                 0
##      0.313581394222809              0                 0                 0
##      0.399450114450523              0                 0                 0
##      0.419739887455571              0                 0                 0
##      0.425358901761228              0                 0                 0
##      0.594035429893685              0                 0                 0
##      0.671638488556335              0                 0                 0
##      0.688092298985074              0                 0                 0
##      0.806600378227794              0                 0                 0
##      0.867455094638368              0                 0                 0
##      0.897003448844096              0                 0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.174305555555556 0.208333333333333
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.220833333333333 0.25 0.270833333333333
##      0.000000000123720820519974                 0    0                 0
##      0.0000000142143709248919                   0    0                 0
##      0.0000000203570784591136                   0    0                 0
##      0.0000000942663046181582                   0    0                 0
##      0.0381424863643358                         0    0                 0
##      0.0395235614826762                         0    0                 0
##      0.0398504564629362                         0    0                 0
##      0.0449831541922517                         0    0                 0
##      0.150208567676068                          0    0                 0
##      0.291704657263826                          0    0                 0
##      0.31263158525612                           0    0                 0
##      0.313581394222809                          0    0                 0
##      0.399450114450523                          0    0                 0
##      0.419739887455571                          0    0                 0
##      0.425358901761228                          0    0                 0
##      0.594035429893685                          0    0                 0
##      0.671638488556335                          0    0                 0
##      0.688092298985074                          0    0                 0
##      0.806600378227794                          0    0                 0
##      0.867455094638368                          0    0                 0
##      0.897003448844096                          0    0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.289583333333333 0.371527777777778
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.409722222222222 0.416666666666667 0.5 0.55625
##      0.000000000123720820519974                 0                 0   0       0
##      0.0000000142143709248919                   0                 0   0       0
##      0.0000000203570784591136                   0                 0   0       0
##      0.0000000942663046181582                   0                 0   0       0
##      0.0381424863643358                         0                 0   0       0
##      0.0395235614826762                         0                 0   0       0
##      0.0398504564629362                         0                 0   0       0
##      0.0449831541922517                         0                 0   0       0
##      0.150208567676068                          0                 0   0       0
##      0.291704657263826                          0                 0   0       0
##      0.31263158525612                           0                 0   0       0
##      0.313581394222809                          0                 0   0       0
##      0.399450114450523                          0                 0   0       0
##      0.419739887455571                          0                 0   0       0
##      0.425358901761228                          0                 0   0       0
##      0.594035429893685                          0                 0   0       0
##      0.671638488556335                          0                 0   0       0
##      0.688092298985074                          0                 0   0       0
##      0.806600378227794                          0                 0   0       0
##      0.867455094638368                          0                 0   0       0
##      0.897003448844096                          0                 0   0       0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.639583333333333 0.907785087701754 1
##      0.000000000123720820519974                 0                 0 0
##      0.0000000142143709248919                   0                 0 0
##      0.0000000203570784591136                   0                 0 0
##      0.0000000942663046181582                   0                 0 0
##      0.0381424863643358                         0                 0 0
##      0.0395235614826762                         0                 0 0
##      0.0398504564629362                         0                 0 0
##      0.0449831541922517                         0                 0 0
##      0.150208567676068                          0                 0 0
##      0.291704657263826                          0                 0 0
##      0.31263158525612                           0                 0 0
##      0.313581394222809                          0                 0 0
##      0.399450114450523                          0                 0 0
##      0.419739887455571                          0                 0 0
##      0.425358901761228                          0                 0 0
##      0.594035429893685                          0                 0 0
##      0.671638488556335                          0                 0 0
##      0.688092298985074                          0                 0 0
##      0.806600378227794                          0                 0 0
##      0.867455094638368                          0                 0 0
##      0.897003448844096                          0                 0 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 1.34930555555556 4.020833333 6.15
##      0.000000000123720820519974                0           0    0
##      0.0000000142143709248919                  0           0    0
##      0.0000000203570784591136                  0           0    0
##      0.0000000942663046181582                  0           0    0
##      0.0381424863643358                        0           0    0
##      0.0395235614826762                        0           0    0
##      0.0398504564629362                        0           0    0
##      0.0449831541922517                        0           0    0
##      0.150208567676068                         0           0    0
##      0.291704657263826                         0           0    0
##      0.31263158525612                          0           0    0
##      0.313581394222809                         0           0    0
##      0.399450114450523                         0           0    0
##      0.419739887455571                         0           0    0
##      0.425358901761228                         0           0    0
##      0.594035429893685                         0           0    0
##      0.671638488556335                         0           0    0
##      0.688092298985074                         0           0    0
##      0.806600378227794                         0           0    0
##      0.867455094638368                         0           0    0
##      0.897003448844096                         0           0    0
## 
## , , OTT_Time = 0.102777777777778, Snapchat_Time = 0.6208333333, Instagram_Time = 0
## 
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.125 0.142361111111111 0.152777777777778
##      0.000000000123720820519974     0                 0                 0
##      0.0000000142143709248919       0                 0                 0
##      0.0000000203570784591136       0                 0                 0
##      0.0000000942663046181582       0                 0                 0
##      0.0381424863643358             0                 0                 0
##      0.0395235614826762             0                 0                 0
##      0.0398504564629362             0                 0                 0
##      0.0449831541922517             0                 0                 0
##      0.150208567676068              0                 0                 0
##      0.291704657263826              0                 0                 0
##      0.31263158525612               0                 0                 0
##      0.313581394222809              0                 0                 0
##      0.399450114450523              0                 0                 0
##      0.419739887455571              0                 0                 0
##      0.425358901761228              0                 0                 0
##      0.594035429893685              0                 0                 0
##      0.671638488556335              0                 0                 0
##      0.688092298985074              0                 0                 0
##      0.806600378227794              0                 0                 0
##      0.867455094638368              0                 0                 0
##      0.897003448844096              0                 0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.174305555555556 0.208333333333333
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.220833333333333 0.25 0.270833333333333
##      0.000000000123720820519974                 0    0                 0
##      0.0000000142143709248919                   0    0                 0
##      0.0000000203570784591136                   0    0                 0
##      0.0000000942663046181582                   0    0                 0
##      0.0381424863643358                         0    0                 0
##      0.0395235614826762                         0    0                 0
##      0.0398504564629362                         0    0                 0
##      0.0449831541922517                         0    0                 0
##      0.150208567676068                          0    0                 0
##      0.291704657263826                          0    0                 0
##      0.31263158525612                           0    0                 0
##      0.313581394222809                          0    0                 0
##      0.399450114450523                          0    0                 0
##      0.419739887455571                          0    0                 0
##      0.425358901761228                          0    0                 0
##      0.594035429893685                          0    0                 0
##      0.671638488556335                          0    0                 0
##      0.688092298985074                          0    0                 0
##      0.806600378227794                          0    0                 0
##      0.867455094638368                          0    0                 0
##      0.897003448844096                          0    0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.289583333333333 0.371527777777778
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.409722222222222 0.416666666666667 0.5 0.55625
##      0.000000000123720820519974                 0                 0   0       0
##      0.0000000142143709248919                   0                 0   0       0
##      0.0000000203570784591136                   0                 0   0       0
##      0.0000000942663046181582                   0                 0   0       0
##      0.0381424863643358                         0                 0   0       0
##      0.0395235614826762                         0                 0   0       0
##      0.0398504564629362                         0                 0   0       0
##      0.0449831541922517                         0                 0   0       0
##      0.150208567676068                          0                 0   0       0
##      0.291704657263826                          0                 0   0       0
##      0.31263158525612                           0                 0   0       0
##      0.313581394222809                          0                 0   0       0
##      0.399450114450523                          0                 0   0       0
##      0.419739887455571                          0                 0   0       0
##      0.425358901761228                          0                 0   0       0
##      0.594035429893685                          0                 0   0       0
##      0.671638488556335                          0                 0   0       0
##      0.688092298985074                          0                 0   0       0
##      0.806600378227794                          0                 0   0       0
##      0.867455094638368                          0                 0   0       0
##      0.897003448844096                          0                 0   0       0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.639583333333333 0.907785087701754 1
##      0.000000000123720820519974                 0                 0 0
##      0.0000000142143709248919                   0                 0 0
##      0.0000000203570784591136                   0                 0 0
##      0.0000000942663046181582                   0                 0 0
##      0.0381424863643358                         0                 0 0
##      0.0395235614826762                         0                 0 0
##      0.0398504564629362                         0                 0 0
##      0.0449831541922517                         0                 0 0
##      0.150208567676068                          0                 0 0
##      0.291704657263826                          0                 0 0
##      0.31263158525612                           0                 0 0
##      0.313581394222809                          0                 0 0
##      0.399450114450523                          0                 0 0
##      0.419739887455571                          0                 0 0
##      0.425358901761228                          0                 0 0
##      0.594035429893685                          0                 0 0
##      0.671638488556335                          0                 0 0
##      0.688092298985074                          0                 0 0
##      0.806600378227794                          0                 0 0
##      0.867455094638368                          0                 0 0
##      0.897003448844096                          0                 0 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 1.34930555555556 4.020833333 6.15
##      0.000000000123720820519974                0           0    0
##      0.0000000142143709248919                  0           0    0
##      0.0000000203570784591136                  0           0    0
##      0.0000000942663046181582                  0           0    0
##      0.0381424863643358                        0           0    0
##      0.0395235614826762                        0           0    0
##      0.0398504564629362                        0           0    0
##      0.0449831541922517                        0           0    0
##      0.150208567676068                         0           0    0
##      0.291704657263826                         0           0    0
##      0.31263158525612                          0           0    0
##      0.313581394222809                         0           0    0
##      0.399450114450523                         0           0    0
##      0.419739887455571                         0           0    0
##      0.425358901761228                         0           0    0
##      0.594035429893685                         0           0    0
##      0.671638488556335                         0           0    0
##      0.688092298985074                         0           0    0
##      0.806600378227794                         0           0    0
##      0.867455094638368                         0           0    0
##      0.897003448844096                         0           0    0
## 
## , , OTT_Time = 0.125, Snapchat_Time = 0.6208333333, Instagram_Time = 0
## 
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.125 0.142361111111111 0.152777777777778
##      0.000000000123720820519974     0                 0                 0
##      0.0000000142143709248919       0                 0                 0
##      0.0000000203570784591136       0                 0                 0
##      0.0000000942663046181582       0                 0                 0
##      0.0381424863643358             0                 0                 0
##      0.0395235614826762             0                 0                 0
##      0.0398504564629362             0                 0                 0
##      0.0449831541922517             0                 0                 0
##      0.150208567676068              0                 0                 0
##      0.291704657263826              0                 0                 0
##      0.31263158525612               0                 0                 0
##      0.313581394222809              0                 0                 0
##      0.399450114450523              0                 0                 0
##      0.419739887455571              0                 0                 0
##      0.425358901761228              0                 0                 0
##      0.594035429893685              0                 0                 0
##      0.671638488556335              0                 0                 0
##      0.688092298985074              0                 0                 0
##      0.806600378227794              0                 0                 0
##      0.867455094638368              0                 0                 0
##      0.897003448844096              0                 0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.174305555555556 0.208333333333333
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.220833333333333 0.25 0.270833333333333
##      0.000000000123720820519974                 0    0                 0
##      0.0000000142143709248919                   0    0                 0
##      0.0000000203570784591136                   0    0                 0
##      0.0000000942663046181582                   0    0                 0
##      0.0381424863643358                         0    0                 0
##      0.0395235614826762                         0    0                 0
##      0.0398504564629362                         0    0                 0
##      0.0449831541922517                         0    0                 0
##      0.150208567676068                          0    0                 0
##      0.291704657263826                          0    0                 0
##      0.31263158525612                           0    0                 0
##      0.313581394222809                          0    0                 0
##      0.399450114450523                          0    0                 0
##      0.419739887455571                          0    0                 0
##      0.425358901761228                          0    0                 0
##      0.594035429893685                          0    0                 0
##      0.671638488556335                          0    0                 0
##      0.688092298985074                          0    0                 0
##      0.806600378227794                          0    0                 0
##      0.867455094638368                          0    0                 0
##      0.897003448844096                          0    0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.289583333333333 0.371527777777778
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.409722222222222 0.416666666666667 0.5 0.55625
##      0.000000000123720820519974                 0                 0   0       0
##      0.0000000142143709248919                   0                 0   0       0
##      0.0000000203570784591136                   0                 0   0       0
##      0.0000000942663046181582                   0                 0   0       0
##      0.0381424863643358                         0                 0   0       0
##      0.0395235614826762                         0                 0   0       0
##      0.0398504564629362                         0                 0   0       0
##      0.0449831541922517                         0                 0   0       0
##      0.150208567676068                          0                 0   0       0
##      0.291704657263826                          0                 0   0       0
##      0.31263158525612                           0                 0   0       0
##      0.313581394222809                          0                 0   0       0
##      0.399450114450523                          0                 0   0       0
##      0.419739887455571                          0                 0   0       0
##      0.425358901761228                          0                 0   0       0
##      0.594035429893685                          0                 0   0       0
##      0.671638488556335                          0                 0   0       0
##      0.688092298985074                          0                 0   0       0
##      0.806600378227794                          0                 0   0       0
##      0.867455094638368                          0                 0   0       0
##      0.897003448844096                          0                 0   0       0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.639583333333333 0.907785087701754 1
##      0.000000000123720820519974                 0                 0 0
##      0.0000000142143709248919                   0                 0 0
##      0.0000000203570784591136                   0                 0 0
##      0.0000000942663046181582                   0                 0 0
##      0.0381424863643358                         0                 0 0
##      0.0395235614826762                         0                 0 0
##      0.0398504564629362                         0                 0 0
##      0.0449831541922517                         0                 0 0
##      0.150208567676068                          0                 0 0
##      0.291704657263826                          0                 0 0
##      0.31263158525612                           0                 0 0
##      0.313581394222809                          0                 0 0
##      0.399450114450523                          0                 0 0
##      0.419739887455571                          0                 0 0
##      0.425358901761228                          0                 0 0
##      0.594035429893685                          0                 0 0
##      0.671638488556335                          0                 0 0
##      0.688092298985074                          0                 0 0
##      0.806600378227794                          0                 0 0
##      0.867455094638368                          0                 0 0
##      0.897003448844096                          0                 0 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 1.34930555555556 4.020833333 6.15
##      0.000000000123720820519974                0           0    0
##      0.0000000142143709248919                  0           0    0
##      0.0000000203570784591136                  0           0    0
##      0.0000000942663046181582                  0           0    0
##      0.0381424863643358                        0           0    0
##      0.0395235614826762                        0           0    0
##      0.0398504564629362                        0           0    0
##      0.0449831541922517                        0           0    0
##      0.150208567676068                         0           0    0
##      0.291704657263826                         0           0    0
##      0.31263158525612                          0           0    0
##      0.313581394222809                         0           0    0
##      0.399450114450523                         0           0    0
##      0.419739887455571                         0           0    0
##      0.425358901761228                         0           0    0
##      0.594035429893685                         0           0    0
##      0.671638488556335                         0           0    0
##      0.688092298985074                         0           0    0
##      0.806600378227794                         0           0    0
##      0.867455094638368                         0           0    0
##      0.897003448844096                         0           0    0
## 
## , , OTT_Time = 0.416666666666667, Snapchat_Time = 0.6208333333, Instagram_Time = 0
## 
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.125 0.142361111111111 0.152777777777778
##      0.000000000123720820519974     0                 0                 0
##      0.0000000142143709248919       0                 0                 0
##      0.0000000203570784591136       0                 0                 0
##      0.0000000942663046181582       0                 0                 0
##      0.0381424863643358             0                 0                 0
##      0.0395235614826762             0                 0                 0
##      0.0398504564629362             0                 0                 0
##      0.0449831541922517             0                 0                 0
##      0.150208567676068              0                 0                 0
##      0.291704657263826              0                 0                 0
##      0.31263158525612               0                 0                 0
##      0.313581394222809              0                 0                 0
##      0.399450114450523              0                 0                 0
##      0.419739887455571              0                 0                 0
##      0.425358901761228              0                 0                 0
##      0.594035429893685              0                 0                 0
##      0.671638488556335              0                 0                 0
##      0.688092298985074              0                 0                 0
##      0.806600378227794              0                 0                 0
##      0.867455094638368              0                 0                 0
##      0.897003448844096              0                 0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.174305555555556 0.208333333333333
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.220833333333333 0.25 0.270833333333333
##      0.000000000123720820519974                 0    0                 0
##      0.0000000142143709248919                   0    0                 0
##      0.0000000203570784591136                   0    0                 0
##      0.0000000942663046181582                   0    0                 0
##      0.0381424863643358                         0    0                 0
##      0.0395235614826762                         0    0                 0
##      0.0398504564629362                         0    0                 0
##      0.0449831541922517                         0    0                 0
##      0.150208567676068                          0    0                 0
##      0.291704657263826                          0    0                 0
##      0.31263158525612                           0    0                 0
##      0.313581394222809                          0    0                 0
##      0.399450114450523                          0    0                 0
##      0.419739887455571                          0    0                 0
##      0.425358901761228                          0    0                 0
##      0.594035429893685                          0    0                 0
##      0.671638488556335                          0    0                 0
##      0.688092298985074                          0    0                 0
##      0.806600378227794                          0    0                 0
##      0.867455094638368                          0    0                 0
##      0.897003448844096                          0    0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.289583333333333 0.371527777777778
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.409722222222222 0.416666666666667 0.5 0.55625
##      0.000000000123720820519974                 0                 0   0       0
##      0.0000000142143709248919                   0                 0   0       0
##      0.0000000203570784591136                   0                 0   0       0
##      0.0000000942663046181582                   0                 0   0       0
##      0.0381424863643358                         0                 0   0       0
##      0.0395235614826762                         0                 0   0       0
##      0.0398504564629362                         0                 0   0       0
##      0.0449831541922517                         0                 0   0       0
##      0.150208567676068                          0                 0   0       0
##      0.291704657263826                          0                 0   0       0
##      0.31263158525612                           0                 0   0       0
##      0.313581394222809                          0                 0   0       0
##      0.399450114450523                          0                 0   0       0
##      0.419739887455571                          0                 0   0       0
##      0.425358901761228                          0                 0   0       0
##      0.594035429893685                          0                 0   0       0
##      0.671638488556335                          0                 0   0       0
##      0.688092298985074                          0                 0   0       0
##      0.806600378227794                          0                 0   0       0
##      0.867455094638368                          0                 0   0       0
##      0.897003448844096                          0                 0   0       0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.639583333333333 0.907785087701754 1
##      0.000000000123720820519974                 0                 0 0
##      0.0000000142143709248919                   0                 0 0
##      0.0000000203570784591136                   0                 0 0
##      0.0000000942663046181582                   0                 0 0
##      0.0381424863643358                         0                 0 0
##      0.0395235614826762                         0                 0 0
##      0.0398504564629362                         0                 0 0
##      0.0449831541922517                         0                 0 0
##      0.150208567676068                          0                 0 0
##      0.291704657263826                          0                 0 0
##      0.31263158525612                           0                 0 0
##      0.313581394222809                          0                 0 0
##      0.399450114450523                          0                 0 0
##      0.419739887455571                          0                 0 0
##      0.425358901761228                          0                 0 0
##      0.594035429893685                          0                 0 0
##      0.671638488556335                          0                 0 0
##      0.688092298985074                          0                 0 0
##      0.806600378227794                          0                 0 0
##      0.867455094638368                          0                 0 0
##      0.897003448844096                          0                 0 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 1.34930555555556 4.020833333 6.15
##      0.000000000123720820519974                0           0    0
##      0.0000000142143709248919                  0           0    0
##      0.0000000203570784591136                  0           0    0
##      0.0000000942663046181582                  0           0    0
##      0.0381424863643358                        0           0    0
##      0.0395235614826762                        0           0    0
##      0.0398504564629362                        0           0    0
##      0.0449831541922517                        0           0    0
##      0.150208567676068                         0           0    0
##      0.291704657263826                         0           0    0
##      0.31263158525612                          0           0    0
##      0.313581394222809                         0           0    0
##      0.399450114450523                         0           0    0
##      0.419739887455571                         0           0    0
##      0.425358901761228                         0           0    0
##      0.594035429893685                         0           0    0
##      0.671638488556335                         0           0    0
##      0.688092298985074                         0           0    0
##      0.806600378227794                         0           0    0
##      0.867455094638368                         0           0    0
##      0.897003448844096                         0           0    0
## 
## , , OTT_Time = 0.5104166667, Snapchat_Time = 0.6208333333, Instagram_Time = 0
## 
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.125 0.142361111111111 0.152777777777778
##      0.000000000123720820519974     0                 0                 0
##      0.0000000142143709248919       0                 0                 0
##      0.0000000203570784591136       0                 0                 0
##      0.0000000942663046181582       0                 0                 0
##      0.0381424863643358             0                 0                 0
##      0.0395235614826762             0                 0                 0
##      0.0398504564629362             0                 0                 0
##      0.0449831541922517             0                 0                 0
##      0.150208567676068              0                 0                 0
##      0.291704657263826              0                 0                 0
##      0.31263158525612               0                 0                 0
##      0.313581394222809              0                 0                 0
##      0.399450114450523              0                 0                 0
##      0.419739887455571              0                 0                 0
##      0.425358901761228              0                 0                 0
##      0.594035429893685              0                 0                 0
##      0.671638488556335              0                 0                 0
##      0.688092298985074              0                 0                 0
##      0.806600378227794              0                 0                 0
##      0.867455094638368              0                 0                 0
##      0.897003448844096              0                 0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.174305555555556 0.208333333333333
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.220833333333333 0.25 0.270833333333333
##      0.000000000123720820519974                 0    0                 0
##      0.0000000142143709248919                   0    0                 0
##      0.0000000203570784591136                   0    0                 0
##      0.0000000942663046181582                   0    0                 0
##      0.0381424863643358                         0    0                 0
##      0.0395235614826762                         0    0                 0
##      0.0398504564629362                         0    0                 0
##      0.0449831541922517                         0    0                 0
##      0.150208567676068                          0    0                 0
##      0.291704657263826                          0    0                 0
##      0.31263158525612                           0    0                 0
##      0.313581394222809                          0    0                 0
##      0.399450114450523                          0    0                 0
##      0.419739887455571                          0    0                 0
##      0.425358901761228                          0    0                 0
##      0.594035429893685                          0    0                 0
##      0.671638488556335                          0    0                 0
##      0.688092298985074                          0    0                 0
##      0.806600378227794                          0    0                 0
##      0.867455094638368                          0    0                 0
##      0.897003448844096                          0    0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.289583333333333 0.371527777777778
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.409722222222222 0.416666666666667 0.5 0.55625
##      0.000000000123720820519974                 0                 0   0       0
##      0.0000000142143709248919                   0                 0   0       0
##      0.0000000203570784591136                   0                 0   0       0
##      0.0000000942663046181582                   0                 0   0       0
##      0.0381424863643358                         0                 0   0       0
##      0.0395235614826762                         0                 0   0       0
##      0.0398504564629362                         0                 0   0       0
##      0.0449831541922517                         0                 0   0       0
##      0.150208567676068                          0                 0   0       0
##      0.291704657263826                          0                 0   0       0
##      0.31263158525612                           0                 0   0       0
##      0.313581394222809                          0                 0   0       0
##      0.399450114450523                          0                 0   0       0
##      0.419739887455571                          0                 0   0       0
##      0.425358901761228                          0                 0   0       0
##      0.594035429893685                          0                 0   0       0
##      0.671638488556335                          0                 0   0       0
##      0.688092298985074                          0                 0   0       0
##      0.806600378227794                          0                 0   0       0
##      0.867455094638368                          0                 0   0       0
##      0.897003448844096                          0                 0   0       0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.639583333333333 0.907785087701754 1
##      0.000000000123720820519974                 0                 0 0
##      0.0000000142143709248919                   0                 0 0
##      0.0000000203570784591136                   0                 0 0
##      0.0000000942663046181582                   0                 0 0
##      0.0381424863643358                         0                 0 0
##      0.0395235614826762                         0                 0 0
##      0.0398504564629362                         0                 0 0
##      0.0449831541922517                         0                 0 0
##      0.150208567676068                          0                 0 0
##      0.291704657263826                          0                 0 0
##      0.31263158525612                           0                 0 0
##      0.313581394222809                          0                 0 0
##      0.399450114450523                          0                 0 0
##      0.419739887455571                          0                 0 0
##      0.425358901761228                          0                 0 0
##      0.594035429893685                          0                 0 0
##      0.671638488556335                          0                 0 0
##      0.688092298985074                          0                 0 0
##      0.806600378227794                          0                 0 0
##      0.867455094638368                          0                 0 0
##      0.897003448844096                          0                 0 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 1.34930555555556 4.020833333 6.15
##      0.000000000123720820519974                0           0    0
##      0.0000000142143709248919                  0           0    0
##      0.0000000203570784591136                  0           0    0
##      0.0000000942663046181582                  0           0    0
##      0.0381424863643358                        0           0    0
##      0.0395235614826762                        0           0    0
##      0.0398504564629362                        0           0    0
##      0.0449831541922517                        0           0    0
##      0.150208567676068                         0           0    0
##      0.291704657263826                         0           0    0
##      0.31263158525612                          0           0    0
##      0.313581394222809                         0           0    0
##      0.399450114450523                         0           0    0
##      0.419739887455571                         0           0    0
##      0.425358901761228                         0           0    0
##      0.594035429893685                         0           0    0
##      0.671638488556335                         0           0    0
##      0.688092298985074                         0           0    0
##      0.806600378227794                         0           0    0
##      0.867455094638368                         0           0    0
##      0.897003448844096                         0           0    0
## 
## , , OTT_Time = 1.44460470085726, Snapchat_Time = 0.6208333333, Instagram_Time = 0
## 
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.125 0.142361111111111 0.152777777777778
##      0.000000000123720820519974     0                 0                 0
##      0.0000000142143709248919       0                 0                 0
##      0.0000000203570784591136       0                 0                 0
##      0.0000000942663046181582       0                 0                 0
##      0.0381424863643358             0                 0                 0
##      0.0395235614826762             0                 0                 0
##      0.0398504564629362             0                 0                 0
##      0.0449831541922517             0                 0                 0
##      0.150208567676068              0                 0                 0
##      0.291704657263826              0                 0                 0
##      0.31263158525612               0                 0                 0
##      0.313581394222809              0                 0                 0
##      0.399450114450523              0                 0                 0
##      0.419739887455571              0                 0                 0
##      0.425358901761228              0                 0                 0
##      0.594035429893685              0                 0                 0
##      0.671638488556335              0                 0                 0
##      0.688092298985074              0                 0                 0
##      0.806600378227794              0                 0                 0
##      0.867455094638368              0                 0                 0
##      0.897003448844096              0                 0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.174305555555556 0.208333333333333
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.220833333333333 0.25 0.270833333333333
##      0.000000000123720820519974                 0    0                 0
##      0.0000000142143709248919                   0    0                 0
##      0.0000000203570784591136                   0    0                 0
##      0.0000000942663046181582                   0    0                 0
##      0.0381424863643358                         0    0                 0
##      0.0395235614826762                         0    0                 0
##      0.0398504564629362                         0    0                 0
##      0.0449831541922517                         0    0                 0
##      0.150208567676068                          0    0                 0
##      0.291704657263826                          0    0                 0
##      0.31263158525612                           0    0                 0
##      0.313581394222809                          0    0                 0
##      0.399450114450523                          0    0                 0
##      0.419739887455571                          0    0                 0
##      0.425358901761228                          0    0                 0
##      0.594035429893685                          0    0                 0
##      0.671638488556335                          0    0                 0
##      0.688092298985074                          0    0                 0
##      0.806600378227794                          0    0                 0
##      0.867455094638368                          0    0                 0
##      0.897003448844096                          0    0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.289583333333333 0.371527777777778
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.409722222222222 0.416666666666667 0.5 0.55625
##      0.000000000123720820519974                 0                 0   0       0
##      0.0000000142143709248919                   0                 0   0       0
##      0.0000000203570784591136                   0                 0   0       0
##      0.0000000942663046181582                   0                 0   0       0
##      0.0381424863643358                         0                 0   0       0
##      0.0395235614826762                         0                 0   0       0
##      0.0398504564629362                         0                 0   0       0
##      0.0449831541922517                         0                 0   0       0
##      0.150208567676068                          0                 0   0       0
##      0.291704657263826                          0                 0   0       0
##      0.31263158525612                           0                 0   0       0
##      0.313581394222809                          0                 0   0       0
##      0.399450114450523                          0                 0   0       0
##      0.419739887455571                          0                 0   0       0
##      0.425358901761228                          0                 0   0       0
##      0.594035429893685                          0                 0   0       0
##      0.671638488556335                          0                 0   0       0
##      0.688092298985074                          0                 0   0       0
##      0.806600378227794                          0                 0   0       0
##      0.867455094638368                          0                 0   0       0
##      0.897003448844096                          0                 0   0       0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.639583333333333 0.907785087701754 1
##      0.000000000123720820519974                 0                 0 0
##      0.0000000142143709248919                   0                 0 0
##      0.0000000203570784591136                   0                 0 0
##      0.0000000942663046181582                   0                 0 0
##      0.0381424863643358                         0                 0 0
##      0.0395235614826762                         0                 0 0
##      0.0398504564629362                         0                 0 0
##      0.0449831541922517                         0                 0 0
##      0.150208567676068                          0                 0 0
##      0.291704657263826                          0                 0 0
##      0.31263158525612                           0                 0 0
##      0.313581394222809                          0                 0 0
##      0.399450114450523                          0                 0 0
##      0.419739887455571                          0                 0 0
##      0.425358901761228                          0                 0 0
##      0.594035429893685                          0                 0 0
##      0.671638488556335                          0                 0 0
##      0.688092298985074                          0                 0 0
##      0.806600378227794                          0                 0 0
##      0.867455094638368                          0                 0 0
##      0.897003448844096                          0                 0 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 1.34930555555556 4.020833333 6.15
##      0.000000000123720820519974                0           0    0
##      0.0000000142143709248919                  0           0    0
##      0.0000000203570784591136                  0           0    0
##      0.0000000942663046181582                  0           0    0
##      0.0381424863643358                        0           0    0
##      0.0395235614826762                        0           0    0
##      0.0398504564629362                        0           0    0
##      0.0449831541922517                        0           0    0
##      0.150208567676068                         0           0    0
##      0.291704657263826                         0           0    0
##      0.31263158525612                          0           0    0
##      0.313581394222809                         0           0    0
##      0.399450114450523                         0           0    0
##      0.419739887455571                         0           0    0
##      0.425358901761228                         0           0    0
##      0.594035429893685                         0           0    0
##      0.671638488556335                         0           0    0
##      0.688092298985074                         0           0    0
##      0.806600378227794                         0           0    0
##      0.867455094638368                         0           0    0
##      0.897003448844096                         0           0    0
## 
## , , OTT_Time = 3, Snapchat_Time = 0.6208333333, Instagram_Time = 0
## 
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.125 0.142361111111111 0.152777777777778
##      0.000000000123720820519974     0                 0                 0
##      0.0000000142143709248919       0                 0                 0
##      0.0000000203570784591136       0                 0                 0
##      0.0000000942663046181582       0                 0                 0
##      0.0381424863643358             0                 0                 0
##      0.0395235614826762             0                 0                 0
##      0.0398504564629362             0                 0                 0
##      0.0449831541922517             0                 0                 0
##      0.150208567676068              0                 0                 0
##      0.291704657263826              0                 0                 0
##      0.31263158525612               0                 0                 0
##      0.313581394222809              0                 0                 0
##      0.399450114450523              0                 0                 0
##      0.419739887455571              0                 0                 0
##      0.425358901761228              0                 0                 0
##      0.594035429893685              0                 0                 0
##      0.671638488556335              0                 0                 0
##      0.688092298985074              0                 0                 0
##      0.806600378227794              0                 0                 0
##      0.867455094638368              0                 0                 0
##      0.897003448844096              0                 0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.174305555555556 0.208333333333333
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.220833333333333 0.25 0.270833333333333
##      0.000000000123720820519974                 0    0                 0
##      0.0000000142143709248919                   0    0                 0
##      0.0000000203570784591136                   0    0                 0
##      0.0000000942663046181582                   0    0                 0
##      0.0381424863643358                         0    0                 0
##      0.0395235614826762                         0    0                 0
##      0.0398504564629362                         0    0                 0
##      0.0449831541922517                         0    0                 0
##      0.150208567676068                          0    0                 0
##      0.291704657263826                          0    0                 0
##      0.31263158525612                           0    0                 0
##      0.313581394222809                          0    0                 0
##      0.399450114450523                          0    0                 0
##      0.419739887455571                          0    0                 0
##      0.425358901761228                          0    0                 0
##      0.594035429893685                          0    0                 0
##      0.671638488556335                          0    0                 0
##      0.688092298985074                          0    0                 0
##      0.806600378227794                          0    0                 0
##      0.867455094638368                          0    0                 0
##      0.897003448844096                          0    0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.289583333333333 0.371527777777778
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.409722222222222 0.416666666666667 0.5 0.55625
##      0.000000000123720820519974                 0                 0   0       0
##      0.0000000142143709248919                   0                 0   0       0
##      0.0000000203570784591136                   0                 0   0       0
##      0.0000000942663046181582                   0                 0   0       0
##      0.0381424863643358                         0                 0   0       0
##      0.0395235614826762                         0                 0   0       0
##      0.0398504564629362                         0                 0   0       0
##      0.0449831541922517                         0                 0   0       0
##      0.150208567676068                          0                 0   0       0
##      0.291704657263826                          0                 0   0       0
##      0.31263158525612                           0                 0   0       0
##      0.313581394222809                          0                 0   0       0
##      0.399450114450523                          0                 0   0       0
##      0.419739887455571                          0                 0   0       0
##      0.425358901761228                          0                 0   0       0
##      0.594035429893685                          0                 0   0       0
##      0.671638488556335                          0                 0   0       0
##      0.688092298985074                          0                 0   0       0
##      0.806600378227794                          0                 0   0       0
##      0.867455094638368                          0                 0   0       0
##      0.897003448844096                          0                 0   0       0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.639583333333333 0.907785087701754 1
##      0.000000000123720820519974                 0                 0 0
##      0.0000000142143709248919                   0                 0 0
##      0.0000000203570784591136                   0                 0 0
##      0.0000000942663046181582                   0                 0 0
##      0.0381424863643358                         0                 0 0
##      0.0395235614826762                         0                 0 0
##      0.0398504564629362                         0                 0 0
##      0.0449831541922517                         0                 0 0
##      0.150208567676068                          0                 0 0
##      0.291704657263826                          0                 0 0
##      0.31263158525612                           0                 0 0
##      0.313581394222809                          0                 0 0
##      0.399450114450523                          0                 0 0
##      0.419739887455571                          0                 0 0
##      0.425358901761228                          0                 0 0
##      0.594035429893685                          0                 0 0
##      0.671638488556335                          0                 0 0
##      0.688092298985074                          0                 0 0
##      0.806600378227794                          0                 0 0
##      0.867455094638368                          0                 0 0
##      0.897003448844096                          0                 0 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 1.34930555555556 4.020833333 6.15
##      0.000000000123720820519974                0           0    0
##      0.0000000142143709248919                  0           0    0
##      0.0000000203570784591136                  0           0    0
##      0.0000000942663046181582                  0           0    0
##      0.0381424863643358                        0           0    0
##      0.0395235614826762                        0           0    0
##      0.0398504564629362                        0           0    0
##      0.0449831541922517                        0           0    0
##      0.150208567676068                         0           0    0
##      0.291704657263826                         0           0    0
##      0.31263158525612                          0           0    0
##      0.313581394222809                         0           0    0
##      0.399450114450523                         0           0    0
##      0.419739887455571                         0           0    0
##      0.425358901761228                         0           0    0
##      0.594035429893685                         0           0    0
##      0.671638488556335                         0           0    0
##      0.688092298985074                         0           0    0
##      0.806600378227794                         0           0    0
##      0.867455094638368                         0           0    0
##      0.897003448844096                         0           0    0
## 
## , , OTT_Time = 14.5, Snapchat_Time = 0.6208333333, Instagram_Time = 0
## 
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.125 0.142361111111111 0.152777777777778
##      0.000000000123720820519974     0                 0                 0
##      0.0000000142143709248919       0                 0                 0
##      0.0000000203570784591136       0                 0                 0
##      0.0000000942663046181582       0                 0                 0
##      0.0381424863643358             0                 0                 0
##      0.0395235614826762             0                 0                 0
##      0.0398504564629362             0                 0                 0
##      0.0449831541922517             0                 0                 0
##      0.150208567676068              0                 0                 0
##      0.291704657263826              0                 0                 0
##      0.31263158525612               0                 0                 0
##      0.313581394222809              0                 0                 0
##      0.399450114450523              0                 0                 0
##      0.419739887455571              0                 0                 0
##      0.425358901761228              0                 0                 0
##      0.594035429893685              0                 0                 0
##      0.671638488556335              0                 0                 0
##      0.688092298985074              0                 0                 0
##      0.806600378227794              0                 0                 0
##      0.867455094638368              0                 0                 0
##      0.897003448844096              0                 0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.174305555555556 0.208333333333333
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.220833333333333 0.25 0.270833333333333
##      0.000000000123720820519974                 0    0                 0
##      0.0000000142143709248919                   0    0                 0
##      0.0000000203570784591136                   0    0                 0
##      0.0000000942663046181582                   0    0                 0
##      0.0381424863643358                         0    0                 0
##      0.0395235614826762                         0    0                 0
##      0.0398504564629362                         0    0                 0
##      0.0449831541922517                         0    0                 0
##      0.150208567676068                          0    0                 0
##      0.291704657263826                          0    0                 0
##      0.31263158525612                           0    0                 0
##      0.313581394222809                          0    0                 0
##      0.399450114450523                          0    0                 0
##      0.419739887455571                          0    0                 0
##      0.425358901761228                          0    0                 0
##      0.594035429893685                          0    0                 0
##      0.671638488556335                          0    0                 0
##      0.688092298985074                          0    0                 0
##      0.806600378227794                          0    0                 0
##      0.867455094638368                          0    0                 0
##      0.897003448844096                          0    0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.289583333333333 0.371527777777778
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.409722222222222 0.416666666666667 0.5 0.55625
##      0.000000000123720820519974                 0                 0   0       0
##      0.0000000142143709248919                   0                 0   0       0
##      0.0000000203570784591136                   0                 0   0       0
##      0.0000000942663046181582                   0                 0   0       0
##      0.0381424863643358                         0                 0   0       0
##      0.0395235614826762                         0                 0   0       0
##      0.0398504564629362                         0                 0   0       0
##      0.0449831541922517                         0                 0   0       0
##      0.150208567676068                          0                 0   0       0
##      0.291704657263826                          0                 0   0       0
##      0.31263158525612                           0                 0   0       0
##      0.313581394222809                          0                 0   0       0
##      0.399450114450523                          0                 0   0       0
##      0.419739887455571                          0                 0   0       0
##      0.425358901761228                          0                 0   0       0
##      0.594035429893685                          0                 0   0       0
##      0.671638488556335                          0                 0   0       0
##      0.688092298985074                          0                 0   0       0
##      0.806600378227794                          0                 0   0       0
##      0.867455094638368                          0                 0   0       0
##      0.897003448844096                          0                 0   0       0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.639583333333333 0.907785087701754 1
##      0.000000000123720820519974                 0                 0 0
##      0.0000000142143709248919                   0                 0 0
##      0.0000000203570784591136                   0                 0 0
##      0.0000000942663046181582                   0                 0 0
##      0.0381424863643358                         0                 0 0
##      0.0395235614826762                         0                 0 0
##      0.0398504564629362                         0                 0 0
##      0.0449831541922517                         0                 0 0
##      0.150208567676068                          0                 0 0
##      0.291704657263826                          0                 0 0
##      0.31263158525612                           0                 0 0
##      0.313581394222809                          0                 0 0
##      0.399450114450523                          0                 0 0
##      0.419739887455571                          0                 0 0
##      0.425358901761228                          0                 0 0
##      0.594035429893685                          0                 0 0
##      0.671638488556335                          0                 0 0
##      0.688092298985074                          0                 0 0
##      0.806600378227794                          0                 0 0
##      0.867455094638368                          0                 0 0
##      0.897003448844096                          0                 0 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 1.34930555555556 4.020833333 6.15
##      0.000000000123720820519974                0           0    0
##      0.0000000142143709248919                  0           0    0
##      0.0000000203570784591136                  0           0    0
##      0.0000000942663046181582                  0           0    0
##      0.0381424863643358                        0           0    0
##      0.0395235614826762                        0           0    0
##      0.0398504564629362                        0           0    0
##      0.0449831541922517                        0           0    0
##      0.150208567676068                         0           0    0
##      0.291704657263826                         0           0    0
##      0.31263158525612                          0           0    0
##      0.313581394222809                         0           0    0
##      0.399450114450523                         0           0    0
##      0.419739887455571                         0           0    0
##      0.425358901761228                         0           0    0
##      0.594035429893685                         0           0    0
##      0.671638488556335                         0           0    0
##      0.688092298985074                         0           0    0
##      0.806600378227794                         0           0    0
##      0.867455094638368                         0           0    0
##      0.897003448844096                         0           0    0
## 
## , , OTT_Time = 0, Snapchat_Time = 1, Instagram_Time = 0
## 
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.125 0.142361111111111 0.152777777777778
##      0.000000000123720820519974     0                 0                 0
##      0.0000000142143709248919       0                 0                 0
##      0.0000000203570784591136       0                 0                 0
##      0.0000000942663046181582       0                 0                 0
##      0.0381424863643358             0                 0                 0
##      0.0395235614826762             0                 0                 0
##      0.0398504564629362             0                 0                 0
##      0.0449831541922517             0                 0                 0
##      0.150208567676068              0                 0                 0
##      0.291704657263826              0                 0                 0
##      0.31263158525612               0                 0                 0
##      0.313581394222809              0                 0                 0
##      0.399450114450523              0                 0                 0
##      0.419739887455571              0                 0                 0
##      0.425358901761228              0                 0                 0
##      0.594035429893685              0                 0                 0
##      0.671638488556335              0                 0                 0
##      0.688092298985074              0                 0                 0
##      0.806600378227794              0                 0                 0
##      0.867455094638368              0                 0                 0
##      0.897003448844096              0                 0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.174305555555556 0.208333333333333
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.220833333333333 0.25 0.270833333333333
##      0.000000000123720820519974                 0    0                 0
##      0.0000000142143709248919                   0    0                 0
##      0.0000000203570784591136                   0    0                 0
##      0.0000000942663046181582                   0    0                 0
##      0.0381424863643358                         0    0                 0
##      0.0395235614826762                         0    0                 0
##      0.0398504564629362                         0    0                 0
##      0.0449831541922517                         0    0                 0
##      0.150208567676068                          0    0                 0
##      0.291704657263826                          0    0                 0
##      0.31263158525612                           0    0                 0
##      0.313581394222809                          0    0                 0
##      0.399450114450523                          0    0                 0
##      0.419739887455571                          0    0                 0
##      0.425358901761228                          0    0                 0
##      0.594035429893685                          0    0                 0
##      0.671638488556335                          0    0                 0
##      0.688092298985074                          0    0                 0
##      0.806600378227794                          0    0                 0
##      0.867455094638368                          0    0                 0
##      0.897003448844096                          0    0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.289583333333333 0.371527777777778
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.409722222222222 0.416666666666667 0.5 0.55625
##      0.000000000123720820519974                 0                 0   0       0
##      0.0000000142143709248919                   0                 0   0       0
##      0.0000000203570784591136                   0                 0   0       0
##      0.0000000942663046181582                   0                 0   0       0
##      0.0381424863643358                         0                 0   0       0
##      0.0395235614826762                         0                 0   0       0
##      0.0398504564629362                         0                 0   0       0
##      0.0449831541922517                         0                 0   0       0
##      0.150208567676068                          0                 0   0       0
##      0.291704657263826                          0                 0   0       0
##      0.31263158525612                           0                 0   0       0
##      0.313581394222809                          0                 0   0       0
##      0.399450114450523                          0                 0   0       0
##      0.419739887455571                          0                 0   0       0
##      0.425358901761228                          0                 0   0       0
##      0.594035429893685                          0                 0   0       0
##      0.671638488556335                          0                 0   0       0
##      0.688092298985074                          0                 0   0       0
##      0.806600378227794                          0                 0   0       0
##      0.867455094638368                          0                 0   0       0
##      0.897003448844096                          0                 0   0       0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.639583333333333 0.907785087701754 1
##      0.000000000123720820519974                 0                 0 0
##      0.0000000142143709248919                   0                 0 0
##      0.0000000203570784591136                   0                 0 0
##      0.0000000942663046181582                   0                 0 0
##      0.0381424863643358                         0                 0 0
##      0.0395235614826762                         0                 0 0
##      0.0398504564629362                         0                 0 0
##      0.0449831541922517                         0                 0 0
##      0.150208567676068                          0                 0 0
##      0.291704657263826                          0                 0 0
##      0.31263158525612                           0                 0 0
##      0.313581394222809                          0                 0 0
##      0.399450114450523                          0                 0 0
##      0.419739887455571                          0                 0 0
##      0.425358901761228                          0                 0 0
##      0.594035429893685                          0                 0 0
##      0.671638488556335                          0                 0 0
##      0.688092298985074                          0                 0 0
##      0.806600378227794                          0                 0 0
##      0.867455094638368                          0                 0 0
##      0.897003448844096                          0                 0 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 1.34930555555556 4.020833333 6.15
##      0.000000000123720820519974                0           0    0
##      0.0000000142143709248919                  0           0    0
##      0.0000000203570784591136                  0           0    0
##      0.0000000942663046181582                  0           0    0
##      0.0381424863643358                        0           0    0
##      0.0395235614826762                        0           0    0
##      0.0398504564629362                        0           0    0
##      0.0449831541922517                        0           0    0
##      0.150208567676068                         0           0    0
##      0.291704657263826                         0           0    0
##      0.31263158525612                          0           0    0
##      0.313581394222809                         0           0    0
##      0.399450114450523                         0           0    0
##      0.419739887455571                         0           0    0
##      0.425358901761228                         0           0    0
##      0.594035429893685                         0           0    0
##      0.671638488556335                         0           0    0
##      0.688092298985074                         0           0    0
##      0.806600378227794                         0           0    0
##      0.867455094638368                         0           0    0
##      0.897003448844096                         0           0    0
## 
## , , OTT_Time = 0.102777777777778, Snapchat_Time = 1, Instagram_Time = 0
## 
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.125 0.142361111111111 0.152777777777778
##      0.000000000123720820519974     0                 0                 0
##      0.0000000142143709248919       0                 0                 0
##      0.0000000203570784591136       0                 0                 0
##      0.0000000942663046181582       0                 0                 0
##      0.0381424863643358             0                 0                 0
##      0.0395235614826762             0                 0                 0
##      0.0398504564629362             0                 0                 0
##      0.0449831541922517             0                 0                 0
##      0.150208567676068              0                 0                 0
##      0.291704657263826              0                 0                 0
##      0.31263158525612               0                 0                 0
##      0.313581394222809              0                 0                 0
##      0.399450114450523              0                 0                 0
##      0.419739887455571              0                 0                 0
##      0.425358901761228              0                 0                 0
##      0.594035429893685              0                 0                 0
##      0.671638488556335              0                 0                 0
##      0.688092298985074              0                 0                 0
##      0.806600378227794              0                 0                 0
##      0.867455094638368              0                 0                 0
##      0.897003448844096              0                 0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.174305555555556 0.208333333333333
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.220833333333333 0.25 0.270833333333333
##      0.000000000123720820519974                 0    0                 0
##      0.0000000142143709248919                   0    0                 0
##      0.0000000203570784591136                   0    0                 0
##      0.0000000942663046181582                   0    0                 0
##      0.0381424863643358                         0    0                 0
##      0.0395235614826762                         0    0                 0
##      0.0398504564629362                         0    0                 0
##      0.0449831541922517                         0    0                 0
##      0.150208567676068                          0    0                 0
##      0.291704657263826                          0    0                 0
##      0.31263158525612                           0    0                 0
##      0.313581394222809                          0    0                 0
##      0.399450114450523                          0    0                 0
##      0.419739887455571                          0    0                 0
##      0.425358901761228                          0    0                 0
##      0.594035429893685                          0    0                 0
##      0.671638488556335                          0    0                 0
##      0.688092298985074                          0    0                 0
##      0.806600378227794                          0    0                 0
##      0.867455094638368                          0    0                 0
##      0.897003448844096                          0    0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.289583333333333 0.371527777777778
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.409722222222222 0.416666666666667 0.5 0.55625
##      0.000000000123720820519974                 0                 0   0       0
##      0.0000000142143709248919                   0                 0   0       0
##      0.0000000203570784591136                   0                 0   0       0
##      0.0000000942663046181582                   0                 0   0       0
##      0.0381424863643358                         0                 0   0       0
##      0.0395235614826762                         0                 0   0       0
##      0.0398504564629362                         0                 0   0       0
##      0.0449831541922517                         0                 0   0       0
##      0.150208567676068                          0                 0   0       0
##      0.291704657263826                          0                 0   0       0
##      0.31263158525612                           0                 0   0       0
##      0.313581394222809                          0                 0   0       0
##      0.399450114450523                          0                 0   0       0
##      0.419739887455571                          0                 0   0       0
##      0.425358901761228                          0                 0   0       0
##      0.594035429893685                          0                 0   0       0
##      0.671638488556335                          0                 0   0       0
##      0.688092298985074                          0                 0   0       0
##      0.806600378227794                          0                 0   0       0
##      0.867455094638368                          0                 0   0       0
##      0.897003448844096                          0                 0   0       0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.639583333333333 0.907785087701754 1
##      0.000000000123720820519974                 0                 0 0
##      0.0000000142143709248919                   0                 0 0
##      0.0000000203570784591136                   0                 0 0
##      0.0000000942663046181582                   0                 0 0
##      0.0381424863643358                         0                 0 0
##      0.0395235614826762                         0                 0 0
##      0.0398504564629362                         0                 0 0
##      0.0449831541922517                         0                 0 0
##      0.150208567676068                          0                 0 0
##      0.291704657263826                          0                 0 0
##      0.31263158525612                           0                 0 0
##      0.313581394222809                          0                 0 0
##      0.399450114450523                          0                 0 0
##      0.419739887455571                          0                 0 0
##      0.425358901761228                          0                 0 0
##      0.594035429893685                          0                 0 0
##      0.671638488556335                          0                 0 0
##      0.688092298985074                          0                 0 0
##      0.806600378227794                          0                 0 0
##      0.867455094638368                          0                 0 0
##      0.897003448844096                          0                 0 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 1.34930555555556 4.020833333 6.15
##      0.000000000123720820519974                0           0    0
##      0.0000000142143709248919                  0           0    0
##      0.0000000203570784591136                  0           0    0
##      0.0000000942663046181582                  0           0    0
##      0.0381424863643358                        0           0    0
##      0.0395235614826762                        0           0    0
##      0.0398504564629362                        0           0    0
##      0.0449831541922517                        0           0    0
##      0.150208567676068                         0           0    0
##      0.291704657263826                         0           0    0
##      0.31263158525612                          0           0    0
##      0.313581394222809                         0           0    0
##      0.399450114450523                         0           0    0
##      0.419739887455571                         0           0    0
##      0.425358901761228                         0           0    0
##      0.594035429893685                         0           0    0
##      0.671638488556335                         0           0    0
##      0.688092298985074                         0           0    0
##      0.806600378227794                         0           0    0
##      0.867455094638368                         0           0    0
##      0.897003448844096                         0           0    0
## 
## , , OTT_Time = 0.125, Snapchat_Time = 1, Instagram_Time = 0
## 
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.125 0.142361111111111 0.152777777777778
##      0.000000000123720820519974     0                 0                 0
##      0.0000000142143709248919       0                 0                 0
##      0.0000000203570784591136       0                 0                 0
##      0.0000000942663046181582       0                 0                 0
##      0.0381424863643358             0                 0                 0
##      0.0395235614826762             0                 0                 0
##      0.0398504564629362             0                 0                 0
##      0.0449831541922517             0                 0                 0
##      0.150208567676068              0                 0                 0
##      0.291704657263826              0                 0                 0
##      0.31263158525612               0                 0                 0
##      0.313581394222809              0                 0                 0
##      0.399450114450523              0                 0                 0
##      0.419739887455571              0                 0                 0
##      0.425358901761228              0                 0                 0
##      0.594035429893685              0                 0                 0
##      0.671638488556335              0                 0                 0
##      0.688092298985074              0                 0                 0
##      0.806600378227794              0                 0                 0
##      0.867455094638368              0                 0                 0
##      0.897003448844096              0                 0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.174305555555556 0.208333333333333
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.220833333333333 0.25 0.270833333333333
##      0.000000000123720820519974                 0    0                 0
##      0.0000000142143709248919                   0    0                 0
##      0.0000000203570784591136                   0    0                 0
##      0.0000000942663046181582                   0    0                 0
##      0.0381424863643358                         0    0                 0
##      0.0395235614826762                         0    0                 0
##      0.0398504564629362                         0    0                 0
##      0.0449831541922517                         0    0                 0
##      0.150208567676068                          0    0                 0
##      0.291704657263826                          0    0                 0
##      0.31263158525612                           0    0                 0
##      0.313581394222809                          0    0                 0
##      0.399450114450523                          0    0                 0
##      0.419739887455571                          0    0                 0
##      0.425358901761228                          0    0                 0
##      0.594035429893685                          0    0                 0
##      0.671638488556335                          0    0                 0
##      0.688092298985074                          0    0                 0
##      0.806600378227794                          0    0                 0
##      0.867455094638368                          0    0                 0
##      0.897003448844096                          0    0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.289583333333333 0.371527777777778
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.409722222222222 0.416666666666667 0.5 0.55625
##      0.000000000123720820519974                 0                 0   0       0
##      0.0000000142143709248919                   0                 0   0       0
##      0.0000000203570784591136                   0                 0   0       0
##      0.0000000942663046181582                   0                 0   0       0
##      0.0381424863643358                         0                 0   0       0
##      0.0395235614826762                         0                 0   0       0
##      0.0398504564629362                         0                 0   0       0
##      0.0449831541922517                         0                 0   0       0
##      0.150208567676068                          0                 0   0       0
##      0.291704657263826                          0                 0   0       0
##      0.31263158525612                           0                 0   0       0
##      0.313581394222809                          0                 0   0       0
##      0.399450114450523                          0                 0   0       0
##      0.419739887455571                          0                 0   0       0
##      0.425358901761228                          0                 0   0       0
##      0.594035429893685                          0                 0   0       0
##      0.671638488556335                          0                 0   0       0
##      0.688092298985074                          0                 0   0       0
##      0.806600378227794                          0                 0   0       0
##      0.867455094638368                          0                 0   0       0
##      0.897003448844096                          0                 0   0       0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.639583333333333 0.907785087701754 1
##      0.000000000123720820519974                 0                 0 0
##      0.0000000142143709248919                   0                 0 0
##      0.0000000203570784591136                   0                 0 0
##      0.0000000942663046181582                   0                 0 0
##      0.0381424863643358                         0                 0 0
##      0.0395235614826762                         0                 0 0
##      0.0398504564629362                         0                 0 0
##      0.0449831541922517                         0                 0 0
##      0.150208567676068                          0                 0 0
##      0.291704657263826                          0                 0 0
##      0.31263158525612                           0                 0 0
##      0.313581394222809                          0                 0 0
##      0.399450114450523                          0                 0 0
##      0.419739887455571                          0                 0 0
##      0.425358901761228                          0                 0 0
##      0.594035429893685                          0                 0 0
##      0.671638488556335                          0                 0 0
##      0.688092298985074                          0                 0 0
##      0.806600378227794                          0                 0 0
##      0.867455094638368                          0                 0 0
##      0.897003448844096                          0                 0 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 1.34930555555556 4.020833333 6.15
##      0.000000000123720820519974                0           0    0
##      0.0000000142143709248919                  0           0    0
##      0.0000000203570784591136                  0           0    0
##      0.0000000942663046181582                  0           0    0
##      0.0381424863643358                        0           0    0
##      0.0395235614826762                        0           0    0
##      0.0398504564629362                        0           0    0
##      0.0449831541922517                        0           0    0
##      0.150208567676068                         0           0    0
##      0.291704657263826                         0           0    0
##      0.31263158525612                          0           0    0
##      0.313581394222809                         0           0    0
##      0.399450114450523                         0           0    0
##      0.419739887455571                         0           0    0
##      0.425358901761228                         0           0    0
##      0.594035429893685                         0           0    0
##      0.671638488556335                         0           0    0
##      0.688092298985074                         0           0    0
##      0.806600378227794                         0           0    0
##      0.867455094638368                         0           0    0
##      0.897003448844096                         0           0    0
## 
## , , OTT_Time = 0.416666666666667, Snapchat_Time = 1, Instagram_Time = 0
## 
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.125 0.142361111111111 0.152777777777778
##      0.000000000123720820519974     0                 0                 0
##      0.0000000142143709248919       0                 0                 0
##      0.0000000203570784591136       0                 0                 0
##      0.0000000942663046181582       0                 0                 0
##      0.0381424863643358             0                 0                 0
##      0.0395235614826762             0                 0                 0
##      0.0398504564629362             0                 0                 0
##      0.0449831541922517             0                 0                 0
##      0.150208567676068              0                 0                 0
##      0.291704657263826              0                 0                 0
##      0.31263158525612               0                 0                 0
##      0.313581394222809              0                 0                 0
##      0.399450114450523              0                 0                 0
##      0.419739887455571              0                 0                 0
##      0.425358901761228              0                 0                 0
##      0.594035429893685              0                 0                 0
##      0.671638488556335              0                 0                 0
##      0.688092298985074              0                 0                 0
##      0.806600378227794              0                 0                 0
##      0.867455094638368              0                 0                 0
##      0.897003448844096              0                 0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.174305555555556 0.208333333333333
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.220833333333333 0.25 0.270833333333333
##      0.000000000123720820519974                 0    0                 0
##      0.0000000142143709248919                   0    0                 0
##      0.0000000203570784591136                   0    0                 0
##      0.0000000942663046181582                   0    0                 0
##      0.0381424863643358                         0    0                 0
##      0.0395235614826762                         0    0                 0
##      0.0398504564629362                         0    0                 0
##      0.0449831541922517                         0    0                 0
##      0.150208567676068                          0    0                 0
##      0.291704657263826                          0    0                 0
##      0.31263158525612                           0    0                 0
##      0.313581394222809                          0    0                 0
##      0.399450114450523                          0    0                 0
##      0.419739887455571                          0    0                 0
##      0.425358901761228                          0    0                 0
##      0.594035429893685                          0    0                 0
##      0.671638488556335                          0    0                 0
##      0.688092298985074                          0    0                 0
##      0.806600378227794                          0    0                 0
##      0.867455094638368                          0    0                 0
##      0.897003448844096                          0    0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.289583333333333 0.371527777777778
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.409722222222222 0.416666666666667 0.5 0.55625
##      0.000000000123720820519974                 0                 0   0       0
##      0.0000000142143709248919                   0                 0   0       0
##      0.0000000203570784591136                   0                 0   0       0
##      0.0000000942663046181582                   0                 0   0       0
##      0.0381424863643358                         0                 0   0       0
##      0.0395235614826762                         0                 0   0       0
##      0.0398504564629362                         0                 0   0       0
##      0.0449831541922517                         0                 0   0       0
##      0.150208567676068                          0                 0   0       0
##      0.291704657263826                          0                 0   0       0
##      0.31263158525612                           0                 0   0       0
##      0.313581394222809                          0                 0   0       0
##      0.399450114450523                          0                 0   0       0
##      0.419739887455571                          0                 0   0       0
##      0.425358901761228                          0                 0   0       0
##      0.594035429893685                          0                 0   0       0
##      0.671638488556335                          0                 0   0       0
##      0.688092298985074                          0                 0   0       0
##      0.806600378227794                          0                 0   0       0
##      0.867455094638368                          0                 0   0       0
##      0.897003448844096                          0                 0   0       0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.639583333333333 0.907785087701754 1
##      0.000000000123720820519974                 0                 0 0
##      0.0000000142143709248919                   0                 0 0
##      0.0000000203570784591136                   0                 0 0
##      0.0000000942663046181582                   0                 0 0
##      0.0381424863643358                         0                 0 0
##      0.0395235614826762                         0                 0 0
##      0.0398504564629362                         0                 0 0
##      0.0449831541922517                         0                 0 0
##      0.150208567676068                          0                 0 0
##      0.291704657263826                          0                 0 0
##      0.31263158525612                           0                 0 0
##      0.313581394222809                          0                 0 0
##      0.399450114450523                          0                 0 0
##      0.419739887455571                          0                 0 0
##      0.425358901761228                          0                 0 0
##      0.594035429893685                          0                 0 0
##      0.671638488556335                          0                 0 0
##      0.688092298985074                          0                 0 0
##      0.806600378227794                          0                 0 0
##      0.867455094638368                          0                 0 0
##      0.897003448844096                          0                 0 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 1.34930555555556 4.020833333 6.15
##      0.000000000123720820519974                0           0    0
##      0.0000000142143709248919                  0           0    0
##      0.0000000203570784591136                  0           0    0
##      0.0000000942663046181582                  0           0    0
##      0.0381424863643358                        0           0    0
##      0.0395235614826762                        0           0    0
##      0.0398504564629362                        0           0    0
##      0.0449831541922517                        0           0    0
##      0.150208567676068                         0           0    0
##      0.291704657263826                         0           0    0
##      0.31263158525612                          0           0    0
##      0.313581394222809                         0           0    0
##      0.399450114450523                         0           0    0
##      0.419739887455571                         0           0    0
##      0.425358901761228                         0           0    0
##      0.594035429893685                         0           0    0
##      0.671638488556335                         0           0    0
##      0.688092298985074                         0           0    0
##      0.806600378227794                         0           0    0
##      0.867455094638368                         0           0    0
##      0.897003448844096                         0           0    0
## 
## , , OTT_Time = 0.5104166667, Snapchat_Time = 1, Instagram_Time = 0
## 
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.125 0.142361111111111 0.152777777777778
##      0.000000000123720820519974     0                 0                 0
##      0.0000000142143709248919       0                 0                 0
##      0.0000000203570784591136       0                 0                 0
##      0.0000000942663046181582       0                 0                 0
##      0.0381424863643358             0                 0                 0
##      0.0395235614826762             0                 0                 0
##      0.0398504564629362             0                 0                 0
##      0.0449831541922517             0                 0                 0
##      0.150208567676068              0                 0                 0
##      0.291704657263826              0                 0                 0
##      0.31263158525612               0                 0                 0
##      0.313581394222809              0                 0                 0
##      0.399450114450523              0                 0                 0
##      0.419739887455571              0                 0                 0
##      0.425358901761228              0                 0                 0
##      0.594035429893685              0                 0                 0
##      0.671638488556335              0                 0                 0
##      0.688092298985074              0                 0                 0
##      0.806600378227794              0                 0                 0
##      0.867455094638368              0                 0                 0
##      0.897003448844096              0                 0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.174305555555556 0.208333333333333
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.220833333333333 0.25 0.270833333333333
##      0.000000000123720820519974                 0    0                 0
##      0.0000000142143709248919                   0    0                 0
##      0.0000000203570784591136                   0    0                 0
##      0.0000000942663046181582                   0    0                 0
##      0.0381424863643358                         0    0                 0
##      0.0395235614826762                         0    0                 0
##      0.0398504564629362                         0    0                 0
##      0.0449831541922517                         0    0                 0
##      0.150208567676068                          0    0                 0
##      0.291704657263826                          0    0                 0
##      0.31263158525612                           0    0                 0
##      0.313581394222809                          0    0                 0
##      0.399450114450523                          0    0                 0
##      0.419739887455571                          0    0                 0
##      0.425358901761228                          0    0                 0
##      0.594035429893685                          0    0                 0
##      0.671638488556335                          0    0                 0
##      0.688092298985074                          0    0                 0
##      0.806600378227794                          0    0                 0
##      0.867455094638368                          0    0                 0
##      0.897003448844096                          0    0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.289583333333333 0.371527777777778
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.409722222222222 0.416666666666667 0.5 0.55625
##      0.000000000123720820519974                 0                 0   0       0
##      0.0000000142143709248919                   0                 0   0       0
##      0.0000000203570784591136                   0                 0   0       0
##      0.0000000942663046181582                   0                 0   0       0
##      0.0381424863643358                         0                 0   0       0
##      0.0395235614826762                         0                 0   0       0
##      0.0398504564629362                         0                 0   0       0
##      0.0449831541922517                         0                 0   0       0
##      0.150208567676068                          0                 0   0       0
##      0.291704657263826                          0                 0   0       0
##      0.31263158525612                           0                 0   0       0
##      0.313581394222809                          0                 0   0       0
##      0.399450114450523                          0                 0   0       0
##      0.419739887455571                          0                 0   0       0
##      0.425358901761228                          0                 0   0       0
##      0.594035429893685                          0                 0   0       0
##      0.671638488556335                          0                 0   0       0
##      0.688092298985074                          0                 0   0       0
##      0.806600378227794                          0                 0   0       0
##      0.867455094638368                          0                 0   0       0
##      0.897003448844096                          0                 0   0       0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.639583333333333 0.907785087701754 1
##      0.000000000123720820519974                 0                 0 0
##      0.0000000142143709248919                   0                 0 0
##      0.0000000203570784591136                   0                 0 0
##      0.0000000942663046181582                   0                 0 0
##      0.0381424863643358                         0                 0 0
##      0.0395235614826762                         0                 0 0
##      0.0398504564629362                         0                 0 0
##      0.0449831541922517                         0                 0 0
##      0.150208567676068                          0                 0 0
##      0.291704657263826                          0                 0 0
##      0.31263158525612                           0                 0 0
##      0.313581394222809                          0                 0 0
##      0.399450114450523                          0                 0 0
##      0.419739887455571                          0                 0 0
##      0.425358901761228                          0                 0 0
##      0.594035429893685                          0                 0 0
##      0.671638488556335                          0                 0 0
##      0.688092298985074                          0                 0 0
##      0.806600378227794                          0                 0 0
##      0.867455094638368                          0                 0 0
##      0.897003448844096                          0                 0 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 1.34930555555556 4.020833333 6.15
##      0.000000000123720820519974                0           0    0
##      0.0000000142143709248919                  0           0    0
##      0.0000000203570784591136                  0           0    0
##      0.0000000942663046181582                  0           0    0
##      0.0381424863643358                        0           0    0
##      0.0395235614826762                        0           0    0
##      0.0398504564629362                        0           0    0
##      0.0449831541922517                        0           0    0
##      0.150208567676068                         0           0    0
##      0.291704657263826                         0           0    0
##      0.31263158525612                          0           0    0
##      0.313581394222809                         0           0    0
##      0.399450114450523                         0           0    0
##      0.419739887455571                         0           0    0
##      0.425358901761228                         0           0    0
##      0.594035429893685                         0           0    0
##      0.671638488556335                         0           0    0
##      0.688092298985074                         0           0    0
##      0.806600378227794                         0           0    0
##      0.867455094638368                         0           0    0
##      0.897003448844096                         0           0    0
## 
## , , OTT_Time = 1.44460470085726, Snapchat_Time = 1, Instagram_Time = 0
## 
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.125 0.142361111111111 0.152777777777778
##      0.000000000123720820519974     0                 0                 0
##      0.0000000142143709248919       0                 0                 0
##      0.0000000203570784591136       0                 0                 0
##      0.0000000942663046181582       0                 0                 0
##      0.0381424863643358             0                 0                 0
##      0.0395235614826762             0                 0                 0
##      0.0398504564629362             0                 0                 0
##      0.0449831541922517             0                 0                 0
##      0.150208567676068              0                 0                 0
##      0.291704657263826              0                 0                 0
##      0.31263158525612               0                 0                 0
##      0.313581394222809              0                 0                 0
##      0.399450114450523              0                 0                 0
##      0.419739887455571              0                 0                 0
##      0.425358901761228              0                 0                 0
##      0.594035429893685              0                 0                 0
##      0.671638488556335              0                 0                 0
##      0.688092298985074              0                 0                 0
##      0.806600378227794              0                 0                 0
##      0.867455094638368              0                 0                 0
##      0.897003448844096              0                 0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.174305555555556 0.208333333333333
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.220833333333333 0.25 0.270833333333333
##      0.000000000123720820519974                 0    0                 0
##      0.0000000142143709248919                   0    0                 0
##      0.0000000203570784591136                   0    0                 0
##      0.0000000942663046181582                   0    0                 0
##      0.0381424863643358                         0    0                 0
##      0.0395235614826762                         0    0                 0
##      0.0398504564629362                         0    0                 0
##      0.0449831541922517                         0    0                 0
##      0.150208567676068                          0    0                 0
##      0.291704657263826                          0    0                 0
##      0.31263158525612                           0    0                 0
##      0.313581394222809                          0    0                 0
##      0.399450114450523                          0    0                 0
##      0.419739887455571                          0    0                 0
##      0.425358901761228                          0    0                 0
##      0.594035429893685                          0    0                 0
##      0.671638488556335                          0    0                 0
##      0.688092298985074                          0    0                 0
##      0.806600378227794                          0    0                 0
##      0.867455094638368                          0    0                 0
##      0.897003448844096                          0    0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.289583333333333 0.371527777777778
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.409722222222222 0.416666666666667 0.5 0.55625
##      0.000000000123720820519974                 0                 0   0       0
##      0.0000000142143709248919                   0                 0   0       0
##      0.0000000203570784591136                   0                 0   0       0
##      0.0000000942663046181582                   0                 0   0       0
##      0.0381424863643358                         0                 0   0       0
##      0.0395235614826762                         0                 0   0       0
##      0.0398504564629362                         0                 0   0       0
##      0.0449831541922517                         0                 0   0       0
##      0.150208567676068                          0                 0   0       0
##      0.291704657263826                          0                 0   0       0
##      0.31263158525612                           0                 0   0       0
##      0.313581394222809                          0                 0   0       0
##      0.399450114450523                          0                 0   0       0
##      0.419739887455571                          0                 0   0       0
##      0.425358901761228                          0                 0   0       0
##      0.594035429893685                          0                 0   0       0
##      0.671638488556335                          0                 0   0       0
##      0.688092298985074                          0                 0   0       0
##      0.806600378227794                          0                 0   0       0
##      0.867455094638368                          0                 0   0       0
##      0.897003448844096                          0                 0   0       0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.639583333333333 0.907785087701754 1
##      0.000000000123720820519974                 0                 0 0
##      0.0000000142143709248919                   0                 0 0
##      0.0000000203570784591136                   0                 0 0
##      0.0000000942663046181582                   0                 0 0
##      0.0381424863643358                         0                 0 0
##      0.0395235614826762                         0                 0 0
##      0.0398504564629362                         0                 0 0
##      0.0449831541922517                         0                 0 0
##      0.150208567676068                          0                 0 0
##      0.291704657263826                          0                 0 0
##      0.31263158525612                           0                 0 0
##      0.313581394222809                          0                 0 0
##      0.399450114450523                          0                 0 0
##      0.419739887455571                          0                 0 0
##      0.425358901761228                          0                 0 0
##      0.594035429893685                          0                 0 0
##      0.671638488556335                          0                 0 0
##      0.688092298985074                          0                 0 0
##      0.806600378227794                          0                 0 0
##      0.867455094638368                          0                 0 0
##      0.897003448844096                          0                 0 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 1.34930555555556 4.020833333 6.15
##      0.000000000123720820519974                0           0    0
##      0.0000000142143709248919                  0           0    0
##      0.0000000203570784591136                  0           0    0
##      0.0000000942663046181582                  0           0    0
##      0.0381424863643358                        0           0    0
##      0.0395235614826762                        0           0    0
##      0.0398504564629362                        0           0    0
##      0.0449831541922517                        0           0    0
##      0.150208567676068                         0           0    0
##      0.291704657263826                         0           0    0
##      0.31263158525612                          0           0    0
##      0.313581394222809                         0           0    0
##      0.399450114450523                         0           0    0
##      0.419739887455571                         0           0    0
##      0.425358901761228                         0           0    0
##      0.594035429893685                         0           0    0
##      0.671638488556335                         0           0    0
##      0.688092298985074                         0           0    0
##      0.806600378227794                         0           0    0
##      0.867455094638368                         0           0    0
##      0.897003448844096                         0           0    0
## 
## , , OTT_Time = 3, Snapchat_Time = 1, Instagram_Time = 0
## 
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.125 0.142361111111111 0.152777777777778
##      0.000000000123720820519974     0                 0                 0
##      0.0000000142143709248919       0                 0                 0
##      0.0000000203570784591136       0                 0                 0
##      0.0000000942663046181582       0                 0                 0
##      0.0381424863643358             0                 0                 0
##      0.0395235614826762             0                 0                 0
##      0.0398504564629362             0                 0                 0
##      0.0449831541922517             0                 0                 0
##      0.150208567676068              0                 0                 0
##      0.291704657263826              0                 0                 0
##      0.31263158525612               0                 0                 0
##      0.313581394222809              0                 0                 0
##      0.399450114450523              0                 0                 0
##      0.419739887455571              0                 0                 0
##      0.425358901761228              0                 0                 0
##      0.594035429893685              0                 0                 0
##      0.671638488556335              0                 0                 0
##      0.688092298985074              0                 0                 0
##      0.806600378227794              0                 0                 0
##      0.867455094638368              0                 0                 0
##      0.897003448844096              0                 0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.174305555555556 0.208333333333333
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.220833333333333 0.25 0.270833333333333
##      0.000000000123720820519974                 0    0                 0
##      0.0000000142143709248919                   0    0                 0
##      0.0000000203570784591136                   0    0                 0
##      0.0000000942663046181582                   0    0                 0
##      0.0381424863643358                         0    0                 0
##      0.0395235614826762                         0    0                 0
##      0.0398504564629362                         0    0                 0
##      0.0449831541922517                         0    0                 0
##      0.150208567676068                          0    0                 0
##      0.291704657263826                          0    0                 0
##      0.31263158525612                           0    0                 0
##      0.313581394222809                          0    0                 0
##      0.399450114450523                          0    0                 0
##      0.419739887455571                          0    0                 0
##      0.425358901761228                          0    0                 0
##      0.594035429893685                          0    0                 0
##      0.671638488556335                          0    0                 0
##      0.688092298985074                          0    0                 0
##      0.806600378227794                          0    0                 0
##      0.867455094638368                          0    0                 0
##      0.897003448844096                          0    0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.289583333333333 0.371527777777778
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.409722222222222 0.416666666666667 0.5 0.55625
##      0.000000000123720820519974                 0                 0   0       0
##      0.0000000142143709248919                   0                 0   0       0
##      0.0000000203570784591136                   0                 0   0       0
##      0.0000000942663046181582                   0                 0   0       0
##      0.0381424863643358                         0                 0   0       0
##      0.0395235614826762                         0                 0   0       0
##      0.0398504564629362                         0                 0   0       0
##      0.0449831541922517                         0                 0   0       0
##      0.150208567676068                          0                 0   0       0
##      0.291704657263826                          0                 0   0       0
##      0.31263158525612                           0                 0   0       0
##      0.313581394222809                          0                 0   0       0
##      0.399450114450523                          0                 0   0       0
##      0.419739887455571                          0                 0   0       0
##      0.425358901761228                          0                 0   0       0
##      0.594035429893685                          0                 0   0       0
##      0.671638488556335                          0                 0   0       0
##      0.688092298985074                          0                 0   0       0
##      0.806600378227794                          0                 0   0       0
##      0.867455094638368                          0                 0   0       0
##      0.897003448844096                          0                 0   0       0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.639583333333333 0.907785087701754 1
##      0.000000000123720820519974                 0                 0 0
##      0.0000000142143709248919                   0                 0 0
##      0.0000000203570784591136                   0                 0 0
##      0.0000000942663046181582                   0                 0 0
##      0.0381424863643358                         0                 0 0
##      0.0395235614826762                         0                 0 0
##      0.0398504564629362                         0                 0 0
##      0.0449831541922517                         0                 0 0
##      0.150208567676068                          0                 0 0
##      0.291704657263826                          0                 0 0
##      0.31263158525612                           0                 0 0
##      0.313581394222809                          0                 0 0
##      0.399450114450523                          0                 0 0
##      0.419739887455571                          0                 0 0
##      0.425358901761228                          0                 0 0
##      0.594035429893685                          0                 0 0
##      0.671638488556335                          0                 0 0
##      0.688092298985074                          0                 0 0
##      0.806600378227794                          0                 0 0
##      0.867455094638368                          0                 0 0
##      0.897003448844096                          0                 0 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 1.34930555555556 4.020833333 6.15
##      0.000000000123720820519974                0           0    0
##      0.0000000142143709248919                  0           0    0
##      0.0000000203570784591136                  0           0    0
##      0.0000000942663046181582                  0           0    0
##      0.0381424863643358                        0           0    0
##      0.0395235614826762                        0           0    0
##      0.0398504564629362                        0           0    0
##      0.0449831541922517                        0           0    0
##      0.150208567676068                         0           0    0
##      0.291704657263826                         0           0    0
##      0.31263158525612                          0           0    0
##      0.313581394222809                         0           0    0
##      0.399450114450523                         0           0    0
##      0.419739887455571                         0           0    0
##      0.425358901761228                         0           0    0
##      0.594035429893685                         0           0    0
##      0.671638488556335                         0           0    0
##      0.688092298985074                         0           0    0
##      0.806600378227794                         0           0    0
##      0.867455094638368                         0           0    0
##      0.897003448844096                         0           0    0
## 
## , , OTT_Time = 14.5, Snapchat_Time = 1, Instagram_Time = 0
## 
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.125 0.142361111111111 0.152777777777778
##      0.000000000123720820519974     0                 0                 0
##      0.0000000142143709248919       0                 0                 0
##      0.0000000203570784591136       0                 0                 0
##      0.0000000942663046181582       0                 0                 0
##      0.0381424863643358             0                 0                 0
##      0.0395235614826762             0                 0                 0
##      0.0398504564629362             0                 0                 0
##      0.0449831541922517             0                 0                 0
##      0.150208567676068              0                 0                 0
##      0.291704657263826              0                 0                 0
##      0.31263158525612               0                 0                 0
##      0.313581394222809              0                 0                 0
##      0.399450114450523              0                 0                 0
##      0.419739887455571              0                 0                 0
##      0.425358901761228              0                 0                 0
##      0.594035429893685              0                 0                 0
##      0.671638488556335              0                 0                 0
##      0.688092298985074              0                 0                 0
##      0.806600378227794              0                 0                 0
##      0.867455094638368              0                 0                 0
##      0.897003448844096              0                 0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.174305555555556 0.208333333333333
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.220833333333333 0.25 0.270833333333333
##      0.000000000123720820519974                 0    0                 0
##      0.0000000142143709248919                   0    0                 0
##      0.0000000203570784591136                   0    0                 0
##      0.0000000942663046181582                   0    0                 0
##      0.0381424863643358                         0    0                 0
##      0.0395235614826762                         0    0                 0
##      0.0398504564629362                         0    0                 0
##      0.0449831541922517                         0    0                 0
##      0.150208567676068                          0    0                 0
##      0.291704657263826                          0    0                 0
##      0.31263158525612                           0    0                 0
##      0.313581394222809                          0    0                 0
##      0.399450114450523                          0    0                 0
##      0.419739887455571                          0    0                 0
##      0.425358901761228                          0    0                 0
##      0.594035429893685                          0    0                 0
##      0.671638488556335                          0    0                 0
##      0.688092298985074                          0    0                 0
##      0.806600378227794                          0    0                 0
##      0.867455094638368                          0    0                 0
##      0.897003448844096                          0    0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.289583333333333 0.371527777777778
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.409722222222222 0.416666666666667 0.5 0.55625
##      0.000000000123720820519974                 0                 0   0       0
##      0.0000000142143709248919                   0                 0   0       0
##      0.0000000203570784591136                   0                 0   0       0
##      0.0000000942663046181582                   0                 0   0       0
##      0.0381424863643358                         0                 0   0       0
##      0.0395235614826762                         0                 0   0       0
##      0.0398504564629362                         0                 0   0       0
##      0.0449831541922517                         0                 0   0       0
##      0.150208567676068                          0                 0   0       0
##      0.291704657263826                          0                 0   0       0
##      0.31263158525612                           0                 0   0       0
##      0.313581394222809                          0                 0   0       0
##      0.399450114450523                          0                 0   0       0
##      0.419739887455571                          0                 0   0       0
##      0.425358901761228                          0                 0   0       0
##      0.594035429893685                          0                 0   0       0
##      0.671638488556335                          0                 0   0       0
##      0.688092298985074                          0                 0   0       0
##      0.806600378227794                          0                 0   0       0
##      0.867455094638368                          0                 0   0       0
##      0.897003448844096                          0                 0   0       0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.639583333333333 0.907785087701754 1
##      0.000000000123720820519974                 0                 0 0
##      0.0000000142143709248919                   0                 0 0
##      0.0000000203570784591136                   0                 0 0
##      0.0000000942663046181582                   0                 0 0
##      0.0381424863643358                         0                 0 0
##      0.0395235614826762                         0                 0 0
##      0.0398504564629362                         0                 0 0
##      0.0449831541922517                         0                 0 0
##      0.150208567676068                          0                 0 0
##      0.291704657263826                          0                 0 0
##      0.31263158525612                           0                 0 0
##      0.313581394222809                          0                 0 0
##      0.399450114450523                          0                 0 0
##      0.419739887455571                          0                 0 0
##      0.425358901761228                          0                 0 0
##      0.594035429893685                          0                 0 0
##      0.671638488556335                          0                 0 0
##      0.688092298985074                          0                 0 0
##      0.806600378227794                          0                 0 0
##      0.867455094638368                          0                 0 0
##      0.897003448844096                          0                 0 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 1.34930555555556 4.020833333 6.15
##      0.000000000123720820519974                0           0    0
##      0.0000000142143709248919                  0           0    0
##      0.0000000203570784591136                  0           0    0
##      0.0000000942663046181582                  0           0    0
##      0.0381424863643358                        0           0    0
##      0.0395235614826762                        0           0    0
##      0.0398504564629362                        0           0    0
##      0.0449831541922517                        0           0    0
##      0.150208567676068                         0           0    0
##      0.291704657263826                         0           0    0
##      0.31263158525612                          0           0    0
##      0.313581394222809                         0           0    0
##      0.399450114450523                         0           0    0
##      0.419739887455571                         0           0    0
##      0.425358901761228                         0           0    0
##      0.594035429893685                         0           0    0
##      0.671638488556335                         0           0    0
##      0.688092298985074                         0           0    0
##      0.806600378227794                         0           0    0
##      0.867455094638368                         0           0    0
##      0.897003448844096                         0           0    0
## 
## , , OTT_Time = 0, Snapchat_Time = 3.83333333333333, Instagram_Time = 0
## 
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.125 0.142361111111111 0.152777777777778
##      0.000000000123720820519974     0                 0                 0
##      0.0000000142143709248919       0                 0                 0
##      0.0000000203570784591136       0                 0                 0
##      0.0000000942663046181582       0                 0                 0
##      0.0381424863643358             0                 0                 0
##      0.0395235614826762             0                 0                 0
##      0.0398504564629362             0                 0                 0
##      0.0449831541922517             0                 0                 0
##      0.150208567676068              0                 0                 0
##      0.291704657263826              0                 0                 0
##      0.31263158525612               0                 0                 0
##      0.313581394222809              0                 0                 0
##      0.399450114450523              0                 0                 0
##      0.419739887455571              0                 0                 0
##      0.425358901761228              0                 0                 0
##      0.594035429893685              0                 0                 0
##      0.671638488556335              0                 0                 0
##      0.688092298985074              0                 0                 0
##      0.806600378227794              0                 0                 0
##      0.867455094638368              0                 0                 0
##      0.897003448844096              0                 0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.174305555555556 0.208333333333333
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.220833333333333 0.25 0.270833333333333
##      0.000000000123720820519974                 0    0                 0
##      0.0000000142143709248919                   0    0                 0
##      0.0000000203570784591136                   0    0                 0
##      0.0000000942663046181582                   0    0                 0
##      0.0381424863643358                         0    0                 0
##      0.0395235614826762                         0    0                 0
##      0.0398504564629362                         0    0                 0
##      0.0449831541922517                         0    0                 0
##      0.150208567676068                          0    0                 0
##      0.291704657263826                          0    0                 0
##      0.31263158525612                           0    0                 0
##      0.313581394222809                          0    0                 0
##      0.399450114450523                          0    0                 0
##      0.419739887455571                          0    0                 0
##      0.425358901761228                          0    0                 0
##      0.594035429893685                          0    0                 0
##      0.671638488556335                          0    0                 0
##      0.688092298985074                          0    0                 0
##      0.806600378227794                          0    0                 0
##      0.867455094638368                          0    0                 0
##      0.897003448844096                          0    0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.289583333333333 0.371527777777778
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.409722222222222 0.416666666666667 0.5 0.55625
##      0.000000000123720820519974                 0                 0   0       0
##      0.0000000142143709248919                   0                 0   0       0
##      0.0000000203570784591136                   0                 0   0       0
##      0.0000000942663046181582                   0                 0   0       0
##      0.0381424863643358                         0                 0   0       0
##      0.0395235614826762                         0                 0   0       0
##      0.0398504564629362                         0                 0   0       0
##      0.0449831541922517                         0                 0   0       0
##      0.150208567676068                          0                 0   0       0
##      0.291704657263826                          0                 0   0       0
##      0.31263158525612                           0                 0   0       0
##      0.313581394222809                          0                 0   0       0
##      0.399450114450523                          0                 0   0       0
##      0.419739887455571                          0                 0   0       0
##      0.425358901761228                          0                 0   0       0
##      0.594035429893685                          0                 0   0       0
##      0.671638488556335                          0                 0   0       0
##      0.688092298985074                          0                 0   0       0
##      0.806600378227794                          0                 0   0       0
##      0.867455094638368                          0                 0   0       0
##      0.897003448844096                          0                 0   0       0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.639583333333333 0.907785087701754 1
##      0.000000000123720820519974                 0                 0 0
##      0.0000000142143709248919                   0                 0 0
##      0.0000000203570784591136                   0                 0 0
##      0.0000000942663046181582                   0                 0 0
##      0.0381424863643358                         0                 0 0
##      0.0395235614826762                         0                 0 0
##      0.0398504564629362                         0                 0 0
##      0.0449831541922517                         0                 0 0
##      0.150208567676068                          0                 0 0
##      0.291704657263826                          0                 0 0
##      0.31263158525612                           0                 0 0
##      0.313581394222809                          0                 0 0
##      0.399450114450523                          0                 0 0
##      0.419739887455571                          0                 0 0
##      0.425358901761228                          0                 0 0
##      0.594035429893685                          0                 0 0
##      0.671638488556335                          0                 0 0
##      0.688092298985074                          0                 0 0
##      0.806600378227794                          0                 0 0
##      0.867455094638368                          0                 0 0
##      0.897003448844096                          0                 0 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 1.34930555555556 4.020833333 6.15
##      0.000000000123720820519974                0           0    0
##      0.0000000142143709248919                  0           0    0
##      0.0000000203570784591136                  0           0    0
##      0.0000000942663046181582                  0           0    0
##      0.0381424863643358                        0           0    0
##      0.0395235614826762                        0           0    0
##      0.0398504564629362                        0           0    0
##      0.0449831541922517                        0           0    0
##      0.150208567676068                         0           0    0
##      0.291704657263826                         0           0    0
##      0.31263158525612                          0           0    0
##      0.313581394222809                         0           0    0
##      0.399450114450523                         0           0    0
##      0.419739887455571                         0           0    0
##      0.425358901761228                         0           0    0
##      0.594035429893685                         0           0    0
##      0.671638488556335                         0           0    0
##      0.688092298985074                         0           0    0
##      0.806600378227794                         0           0    0
##      0.867455094638368                         0           0    0
##      0.897003448844096                         0           0    0
## 
## , , OTT_Time = 0.102777777777778, Snapchat_Time = 3.83333333333333, Instagram_Time = 0
## 
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.125 0.142361111111111 0.152777777777778
##      0.000000000123720820519974     0                 0                 0
##      0.0000000142143709248919       0                 0                 0
##      0.0000000203570784591136       0                 0                 0
##      0.0000000942663046181582       0                 0                 0
##      0.0381424863643358             0                 0                 0
##      0.0395235614826762             0                 0                 0
##      0.0398504564629362             0                 0                 0
##      0.0449831541922517             0                 0                 0
##      0.150208567676068              0                 0                 0
##      0.291704657263826              0                 0                 0
##      0.31263158525612               0                 0                 0
##      0.313581394222809              0                 0                 0
##      0.399450114450523              0                 0                 0
##      0.419739887455571              0                 0                 0
##      0.425358901761228              0                 0                 0
##      0.594035429893685              0                 0                 0
##      0.671638488556335              0                 0                 0
##      0.688092298985074              0                 0                 0
##      0.806600378227794              0                 0                 0
##      0.867455094638368              0                 0                 0
##      0.897003448844096              0                 0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.174305555555556 0.208333333333333
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.220833333333333 0.25 0.270833333333333
##      0.000000000123720820519974                 0    0                 0
##      0.0000000142143709248919                   0    0                 0
##      0.0000000203570784591136                   0    0                 0
##      0.0000000942663046181582                   0    0                 0
##      0.0381424863643358                         0    0                 0
##      0.0395235614826762                         0    0                 0
##      0.0398504564629362                         0    0                 0
##      0.0449831541922517                         0    0                 0
##      0.150208567676068                          0    0                 0
##      0.291704657263826                          0    0                 0
##      0.31263158525612                           0    0                 0
##      0.313581394222809                          0    0                 0
##      0.399450114450523                          0    0                 0
##      0.419739887455571                          0    0                 0
##      0.425358901761228                          0    0                 0
##      0.594035429893685                          0    0                 0
##      0.671638488556335                          0    0                 0
##      0.688092298985074                          0    0                 0
##      0.806600378227794                          0    0                 0
##      0.867455094638368                          0    0                 0
##      0.897003448844096                          0    0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.289583333333333 0.371527777777778
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.409722222222222 0.416666666666667 0.5 0.55625
##      0.000000000123720820519974                 0                 0   0       0
##      0.0000000142143709248919                   0                 0   0       0
##      0.0000000203570784591136                   0                 0   0       0
##      0.0000000942663046181582                   0                 0   0       0
##      0.0381424863643358                         0                 0   0       0
##      0.0395235614826762                         0                 0   0       0
##      0.0398504564629362                         0                 0   0       0
##      0.0449831541922517                         0                 0   0       0
##      0.150208567676068                          0                 0   0       0
##      0.291704657263826                          0                 0   0       0
##      0.31263158525612                           0                 0   0       0
##      0.313581394222809                          0                 0   0       0
##      0.399450114450523                          0                 0   0       0
##      0.419739887455571                          0                 0   0       0
##      0.425358901761228                          0                 0   0       0
##      0.594035429893685                          0                 0   0       0
##      0.671638488556335                          0                 0   0       0
##      0.688092298985074                          0                 0   0       0
##      0.806600378227794                          0                 0   0       0
##      0.867455094638368                          0                 0   0       0
##      0.897003448844096                          0                 0   0       0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.639583333333333 0.907785087701754 1
##      0.000000000123720820519974                 0                 0 0
##      0.0000000142143709248919                   0                 0 0
##      0.0000000203570784591136                   0                 0 0
##      0.0000000942663046181582                   0                 0 0
##      0.0381424863643358                         0                 0 0
##      0.0395235614826762                         0                 0 0
##      0.0398504564629362                         0                 0 0
##      0.0449831541922517                         0                 0 0
##      0.150208567676068                          0                 0 0
##      0.291704657263826                          0                 0 0
##      0.31263158525612                           0                 0 0
##      0.313581394222809                          0                 0 0
##      0.399450114450523                          0                 0 0
##      0.419739887455571                          0                 0 0
##      0.425358901761228                          0                 0 0
##      0.594035429893685                          0                 0 0
##      0.671638488556335                          0                 0 0
##      0.688092298985074                          0                 0 0
##      0.806600378227794                          0                 0 0
##      0.867455094638368                          0                 0 0
##      0.897003448844096                          0                 0 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 1.34930555555556 4.020833333 6.15
##      0.000000000123720820519974                0           0    0
##      0.0000000142143709248919                  0           0    0
##      0.0000000203570784591136                  0           0    0
##      0.0000000942663046181582                  0           0    0
##      0.0381424863643358                        0           0    0
##      0.0395235614826762                        0           0    0
##      0.0398504564629362                        0           0    0
##      0.0449831541922517                        0           0    0
##      0.150208567676068                         0           0    0
##      0.291704657263826                         0           0    0
##      0.31263158525612                          0           0    0
##      0.313581394222809                         0           0    0
##      0.399450114450523                         0           0    0
##      0.419739887455571                         0           0    0
##      0.425358901761228                         0           0    0
##      0.594035429893685                         0           0    0
##      0.671638488556335                         0           0    0
##      0.688092298985074                         0           0    0
##      0.806600378227794                         0           0    0
##      0.867455094638368                         0           0    0
##      0.897003448844096                         0           0    0
## 
## , , OTT_Time = 0.125, Snapchat_Time = 3.83333333333333, Instagram_Time = 0
## 
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.125 0.142361111111111 0.152777777777778
##      0.000000000123720820519974     0                 0                 0
##      0.0000000142143709248919       0                 0                 0
##      0.0000000203570784591136       0                 0                 0
##      0.0000000942663046181582       0                 0                 0
##      0.0381424863643358             0                 0                 0
##      0.0395235614826762             0                 0                 0
##      0.0398504564629362             0                 0                 0
##      0.0449831541922517             0                 0                 0
##      0.150208567676068              0                 0                 0
##      0.291704657263826              0                 0                 0
##      0.31263158525612               0                 0                 0
##      0.313581394222809              0                 0                 0
##      0.399450114450523              0                 0                 0
##      0.419739887455571              0                 0                 0
##      0.425358901761228              0                 0                 0
##      0.594035429893685              0                 0                 0
##      0.671638488556335              0                 0                 0
##      0.688092298985074              0                 0                 0
##      0.806600378227794              0                 0                 0
##      0.867455094638368              0                 0                 0
##      0.897003448844096              0                 0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.174305555555556 0.208333333333333
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.220833333333333 0.25 0.270833333333333
##      0.000000000123720820519974                 0    0                 0
##      0.0000000142143709248919                   0    0                 0
##      0.0000000203570784591136                   0    0                 0
##      0.0000000942663046181582                   0    0                 0
##      0.0381424863643358                         0    0                 0
##      0.0395235614826762                         0    0                 0
##      0.0398504564629362                         0    0                 0
##      0.0449831541922517                         0    0                 0
##      0.150208567676068                          0    0                 0
##      0.291704657263826                          0    0                 0
##      0.31263158525612                           0    0                 0
##      0.313581394222809                          0    0                 0
##      0.399450114450523                          0    0                 0
##      0.419739887455571                          0    0                 0
##      0.425358901761228                          0    0                 0
##      0.594035429893685                          0    0                 0
##      0.671638488556335                          0    0                 0
##      0.688092298985074                          0    0                 0
##      0.806600378227794                          0    0                 0
##      0.867455094638368                          0    0                 0
##      0.897003448844096                          0    0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.289583333333333 0.371527777777778
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.409722222222222 0.416666666666667 0.5 0.55625
##      0.000000000123720820519974                 0                 0   0       0
##      0.0000000142143709248919                   0                 0   0       0
##      0.0000000203570784591136                   0                 0   0       0
##      0.0000000942663046181582                   0                 0   0       0
##      0.0381424863643358                         0                 0   0       0
##      0.0395235614826762                         0                 0   0       0
##      0.0398504564629362                         0                 0   0       0
##      0.0449831541922517                         0                 0   0       0
##      0.150208567676068                          0                 0   0       0
##      0.291704657263826                          0                 0   0       0
##      0.31263158525612                           0                 0   0       0
##      0.313581394222809                          0                 0   0       0
##      0.399450114450523                          0                 0   0       0
##      0.419739887455571                          0                 0   0       0
##      0.425358901761228                          0                 0   0       0
##      0.594035429893685                          0                 0   0       0
##      0.671638488556335                          0                 0   0       0
##      0.688092298985074                          0                 0   0       0
##      0.806600378227794                          0                 0   0       0
##      0.867455094638368                          0                 0   0       0
##      0.897003448844096                          0                 0   0       0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.639583333333333 0.907785087701754 1
##      0.000000000123720820519974                 0                 0 0
##      0.0000000142143709248919                   0                 0 0
##      0.0000000203570784591136                   0                 0 0
##      0.0000000942663046181582                   0                 0 0
##      0.0381424863643358                         0                 0 0
##      0.0395235614826762                         0                 0 0
##      0.0398504564629362                         0                 0 0
##      0.0449831541922517                         0                 0 0
##      0.150208567676068                          0                 0 0
##      0.291704657263826                          0                 0 0
##      0.31263158525612                           0                 0 0
##      0.313581394222809                          0                 0 0
##      0.399450114450523                          0                 0 0
##      0.419739887455571                          0                 0 0
##      0.425358901761228                          0                 0 0
##      0.594035429893685                          0                 0 0
##      0.671638488556335                          0                 0 0
##      0.688092298985074                          0                 0 0
##      0.806600378227794                          0                 0 0
##      0.867455094638368                          0                 0 0
##      0.897003448844096                          0                 0 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 1.34930555555556 4.020833333 6.15
##      0.000000000123720820519974                0           0    0
##      0.0000000142143709248919                  0           0    0
##      0.0000000203570784591136                  0           0    0
##      0.0000000942663046181582                  0           0    0
##      0.0381424863643358                        0           0    0
##      0.0395235614826762                        0           0    0
##      0.0398504564629362                        0           0    0
##      0.0449831541922517                        0           0    0
##      0.150208567676068                         0           0    0
##      0.291704657263826                         0           0    0
##      0.31263158525612                          0           0    0
##      0.313581394222809                         0           0    0
##      0.399450114450523                         0           0    0
##      0.419739887455571                         0           0    0
##      0.425358901761228                         0           0    0
##      0.594035429893685                         0           0    0
##      0.671638488556335                         0           0    0
##      0.688092298985074                         0           0    0
##      0.806600378227794                         0           0    0
##      0.867455094638368                         0           0    0
##      0.897003448844096                         0           0    0
## 
## , , OTT_Time = 0.416666666666667, Snapchat_Time = 3.83333333333333, Instagram_Time = 0
## 
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.125 0.142361111111111 0.152777777777778
##      0.000000000123720820519974     0                 0                 0
##      0.0000000142143709248919       0                 0                 0
##      0.0000000203570784591136       0                 0                 0
##      0.0000000942663046181582       0                 0                 0
##      0.0381424863643358             0                 0                 0
##      0.0395235614826762             0                 0                 0
##      0.0398504564629362             0                 0                 0
##      0.0449831541922517             0                 0                 0
##      0.150208567676068              0                 0                 0
##      0.291704657263826              0                 0                 0
##      0.31263158525612               0                 0                 0
##      0.313581394222809              0                 0                 0
##      0.399450114450523              0                 0                 0
##      0.419739887455571              0                 0                 0
##      0.425358901761228              0                 0                 0
##      0.594035429893685              0                 0                 0
##      0.671638488556335              0                 0                 0
##      0.688092298985074              0                 0                 0
##      0.806600378227794              0                 0                 0
##      0.867455094638368              0                 0                 0
##      0.897003448844096              0                 0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.174305555555556 0.208333333333333
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.220833333333333 0.25 0.270833333333333
##      0.000000000123720820519974                 0    0                 0
##      0.0000000142143709248919                   0    0                 0
##      0.0000000203570784591136                   0    0                 0
##      0.0000000942663046181582                   0    0                 0
##      0.0381424863643358                         0    0                 0
##      0.0395235614826762                         0    0                 0
##      0.0398504564629362                         0    0                 0
##      0.0449831541922517                         0    0                 0
##      0.150208567676068                          0    0                 0
##      0.291704657263826                          0    0                 0
##      0.31263158525612                           0    0                 0
##      0.313581394222809                          0    0                 0
##      0.399450114450523                          0    0                 0
##      0.419739887455571                          0    0                 0
##      0.425358901761228                          0    0                 0
##      0.594035429893685                          0    0                 0
##      0.671638488556335                          0    0                 0
##      0.688092298985074                          0    0                 0
##      0.806600378227794                          0    0                 0
##      0.867455094638368                          0    0                 0
##      0.897003448844096                          0    0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.289583333333333 0.371527777777778
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.409722222222222 0.416666666666667 0.5 0.55625
##      0.000000000123720820519974                 0                 0   0       0
##      0.0000000142143709248919                   0                 0   0       0
##      0.0000000203570784591136                   0                 0   0       0
##      0.0000000942663046181582                   0                 0   0       0
##      0.0381424863643358                         0                 0   0       0
##      0.0395235614826762                         0                 0   0       0
##      0.0398504564629362                         0                 0   0       0
##      0.0449831541922517                         0                 0   0       0
##      0.150208567676068                          0                 0   0       0
##      0.291704657263826                          0                 0   0       0
##      0.31263158525612                           0                 0   0       0
##      0.313581394222809                          0                 0   0       0
##      0.399450114450523                          0                 0   0       0
##      0.419739887455571                          0                 0   0       0
##      0.425358901761228                          0                 0   0       0
##      0.594035429893685                          0                 0   0       0
##      0.671638488556335                          0                 0   0       0
##      0.688092298985074                          0                 0   0       0
##      0.806600378227794                          0                 0   0       0
##      0.867455094638368                          0                 0   0       0
##      0.897003448844096                          0                 0   0       0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.639583333333333 0.907785087701754 1
##      0.000000000123720820519974                 0                 0 0
##      0.0000000142143709248919                   0                 0 0
##      0.0000000203570784591136                   0                 0 0
##      0.0000000942663046181582                   0                 0 0
##      0.0381424863643358                         0                 0 0
##      0.0395235614826762                         0                 0 0
##      0.0398504564629362                         0                 0 0
##      0.0449831541922517                         0                 0 0
##      0.150208567676068                          0                 0 0
##      0.291704657263826                          0                 0 0
##      0.31263158525612                           0                 0 0
##      0.313581394222809                          0                 0 0
##      0.399450114450523                          0                 0 0
##      0.419739887455571                          0                 0 0
##      0.425358901761228                          0                 0 0
##      0.594035429893685                          0                 0 0
##      0.671638488556335                          0                 0 0
##      0.688092298985074                          0                 0 0
##      0.806600378227794                          0                 0 0
##      0.867455094638368                          0                 0 0
##      0.897003448844096                          0                 0 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 1.34930555555556 4.020833333 6.15
##      0.000000000123720820519974                0           0    0
##      0.0000000142143709248919                  0           0    0
##      0.0000000203570784591136                  0           0    0
##      0.0000000942663046181582                  0           0    0
##      0.0381424863643358                        0           0    0
##      0.0395235614826762                        0           0    0
##      0.0398504564629362                        0           0    0
##      0.0449831541922517                        0           0    0
##      0.150208567676068                         0           0    0
##      0.291704657263826                         0           0    0
##      0.31263158525612                          0           0    0
##      0.313581394222809                         0           0    0
##      0.399450114450523                         0           0    0
##      0.419739887455571                         0           0    0
##      0.425358901761228                         0           0    0
##      0.594035429893685                         0           0    0
##      0.671638488556335                         0           0    0
##      0.688092298985074                         0           0    0
##      0.806600378227794                         0           0    0
##      0.867455094638368                         0           0    0
##      0.897003448844096                         0           0    0
## 
## , , OTT_Time = 0.5104166667, Snapchat_Time = 3.83333333333333, Instagram_Time = 0
## 
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.125 0.142361111111111 0.152777777777778
##      0.000000000123720820519974     0                 0                 0
##      0.0000000142143709248919       0                 0                 0
##      0.0000000203570784591136       0                 0                 0
##      0.0000000942663046181582       0                 0                 0
##      0.0381424863643358             0                 0                 0
##      0.0395235614826762             0                 0                 0
##      0.0398504564629362             0                 0                 0
##      0.0449831541922517             0                 0                 0
##      0.150208567676068              0                 0                 0
##      0.291704657263826              0                 0                 0
##      0.31263158525612               0                 0                 0
##      0.313581394222809              0                 0                 0
##      0.399450114450523              0                 0                 0
##      0.419739887455571              0                 0                 0
##      0.425358901761228              0                 0                 0
##      0.594035429893685              0                 0                 0
##      0.671638488556335              0                 0                 0
##      0.688092298985074              0                 0                 0
##      0.806600378227794              0                 0                 0
##      0.867455094638368              0                 0                 0
##      0.897003448844096              0                 0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.174305555555556 0.208333333333333
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.220833333333333 0.25 0.270833333333333
##      0.000000000123720820519974                 0    0                 0
##      0.0000000142143709248919                   0    0                 0
##      0.0000000203570784591136                   0    0                 0
##      0.0000000942663046181582                   0    0                 0
##      0.0381424863643358                         0    0                 0
##      0.0395235614826762                         0    0                 0
##      0.0398504564629362                         0    0                 0
##      0.0449831541922517                         0    0                 0
##      0.150208567676068                          0    0                 0
##      0.291704657263826                          0    0                 0
##      0.31263158525612                           0    0                 0
##      0.313581394222809                          0    0                 0
##      0.399450114450523                          0    0                 0
##      0.419739887455571                          0    0                 0
##      0.425358901761228                          0    0                 0
##      0.594035429893685                          0    0                 0
##      0.671638488556335                          0    0                 0
##      0.688092298985074                          0    0                 0
##      0.806600378227794                          0    0                 0
##      0.867455094638368                          0    0                 0
##      0.897003448844096                          0    0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.289583333333333 0.371527777777778
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.409722222222222 0.416666666666667 0.5 0.55625
##      0.000000000123720820519974                 0                 0   0       0
##      0.0000000142143709248919                   0                 0   0       0
##      0.0000000203570784591136                   0                 0   0       0
##      0.0000000942663046181582                   0                 0   0       0
##      0.0381424863643358                         0                 0   0       0
##      0.0395235614826762                         0                 0   0       0
##      0.0398504564629362                         0                 0   0       0
##      0.0449831541922517                         0                 0   0       0
##      0.150208567676068                          0                 0   0       0
##      0.291704657263826                          0                 0   0       0
##      0.31263158525612                           0                 0   0       0
##      0.313581394222809                          0                 0   0       0
##      0.399450114450523                          0                 0   0       0
##      0.419739887455571                          0                 0   0       0
##      0.425358901761228                          0                 0   0       0
##      0.594035429893685                          0                 0   0       0
##      0.671638488556335                          0                 0   0       0
##      0.688092298985074                          0                 0   0       0
##      0.806600378227794                          0                 0   0       0
##      0.867455094638368                          0                 0   0       0
##      0.897003448844096                          0                 0   0       0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.639583333333333 0.907785087701754 1
##      0.000000000123720820519974                 0                 0 0
##      0.0000000142143709248919                   0                 0 0
##      0.0000000203570784591136                   0                 0 0
##      0.0000000942663046181582                   0                 0 0
##      0.0381424863643358                         0                 0 0
##      0.0395235614826762                         0                 0 0
##      0.0398504564629362                         0                 0 0
##      0.0449831541922517                         0                 0 0
##      0.150208567676068                          0                 0 0
##      0.291704657263826                          0                 0 0
##      0.31263158525612                           0                 0 0
##      0.313581394222809                          0                 0 0
##      0.399450114450523                          0                 0 0
##      0.419739887455571                          0                 0 0
##      0.425358901761228                          0                 0 0
##      0.594035429893685                          0                 0 0
##      0.671638488556335                          0                 0 0
##      0.688092298985074                          0                 0 0
##      0.806600378227794                          0                 0 0
##      0.867455094638368                          0                 0 0
##      0.897003448844096                          0                 0 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 1.34930555555556 4.020833333 6.15
##      0.000000000123720820519974                0           0    0
##      0.0000000142143709248919                  0           0    0
##      0.0000000203570784591136                  0           0    0
##      0.0000000942663046181582                  0           0    0
##      0.0381424863643358                        0           0    0
##      0.0395235614826762                        0           0    0
##      0.0398504564629362                        0           0    0
##      0.0449831541922517                        0           0    0
##      0.150208567676068                         0           0    0
##      0.291704657263826                         0           0    0
##      0.31263158525612                          0           0    0
##      0.313581394222809                         0           0    0
##      0.399450114450523                         0           0    0
##      0.419739887455571                         0           0    0
##      0.425358901761228                         0           0    0
##      0.594035429893685                         0           0    0
##      0.671638488556335                         0           0    0
##      0.688092298985074                         0           0    0
##      0.806600378227794                         0           0    0
##      0.867455094638368                         0           0    0
##      0.897003448844096                         0           0    0
## 
## , , OTT_Time = 1.44460470085726, Snapchat_Time = 3.83333333333333, Instagram_Time = 0
## 
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.125 0.142361111111111 0.152777777777778
##      0.000000000123720820519974     0                 0                 0
##      0.0000000142143709248919       0                 0                 0
##      0.0000000203570784591136       0                 0                 0
##      0.0000000942663046181582       0                 0                 0
##      0.0381424863643358             0                 0                 0
##      0.0395235614826762             0                 0                 0
##      0.0398504564629362             0                 0                 0
##      0.0449831541922517             0                 0                 0
##      0.150208567676068              0                 0                 0
##      0.291704657263826              0                 0                 0
##      0.31263158525612               0                 0                 0
##      0.313581394222809              0                 0                 0
##      0.399450114450523              0                 0                 0
##      0.419739887455571              0                 0                 0
##      0.425358901761228              0                 0                 0
##      0.594035429893685              0                 0                 0
##      0.671638488556335              0                 0                 0
##      0.688092298985074              0                 0                 0
##      0.806600378227794              0                 0                 0
##      0.867455094638368              0                 0                 0
##      0.897003448844096              0                 0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.174305555555556 0.208333333333333
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.220833333333333 0.25 0.270833333333333
##      0.000000000123720820519974                 0    0                 0
##      0.0000000142143709248919                   0    0                 0
##      0.0000000203570784591136                   0    0                 0
##      0.0000000942663046181582                   0    0                 0
##      0.0381424863643358                         0    0                 0
##      0.0395235614826762                         0    0                 0
##      0.0398504564629362                         0    0                 0
##      0.0449831541922517                         0    0                 0
##      0.150208567676068                          0    0                 0
##      0.291704657263826                          0    0                 0
##      0.31263158525612                           0    0                 0
##      0.313581394222809                          0    0                 0
##      0.399450114450523                          0    0                 0
##      0.419739887455571                          0    0                 0
##      0.425358901761228                          0    0                 0
##      0.594035429893685                          0    0                 0
##      0.671638488556335                          0    0                 0
##      0.688092298985074                          0    0                 0
##      0.806600378227794                          0    0                 0
##      0.867455094638368                          0    0                 0
##      0.897003448844096                          0    0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.289583333333333 0.371527777777778
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.409722222222222 0.416666666666667 0.5 0.55625
##      0.000000000123720820519974                 0                 0   0       0
##      0.0000000142143709248919                   0                 0   0       0
##      0.0000000203570784591136                   0                 0   0       0
##      0.0000000942663046181582                   0                 0   0       0
##      0.0381424863643358                         0                 0   0       0
##      0.0395235614826762                         0                 0   0       0
##      0.0398504564629362                         0                 0   0       0
##      0.0449831541922517                         0                 0   0       0
##      0.150208567676068                          0                 0   0       0
##      0.291704657263826                          0                 0   0       0
##      0.31263158525612                           0                 0   0       0
##      0.313581394222809                          0                 0   0       0
##      0.399450114450523                          0                 0   0       0
##      0.419739887455571                          0                 0   0       0
##      0.425358901761228                          0                 0   0       0
##      0.594035429893685                          0                 0   0       0
##      0.671638488556335                          0                 0   0       0
##      0.688092298985074                          0                 0   0       0
##      0.806600378227794                          0                 0   0       0
##      0.867455094638368                          0                 0   0       0
##      0.897003448844096                          0                 0   0       0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.639583333333333 0.907785087701754 1
##      0.000000000123720820519974                 0                 0 0
##      0.0000000142143709248919                   0                 0 0
##      0.0000000203570784591136                   0                 0 0
##      0.0000000942663046181582                   0                 0 0
##      0.0381424863643358                         0                 0 0
##      0.0395235614826762                         0                 0 0
##      0.0398504564629362                         0                 0 0
##      0.0449831541922517                         0                 0 0
##      0.150208567676068                          0                 0 0
##      0.291704657263826                          0                 0 0
##      0.31263158525612                           0                 0 0
##      0.313581394222809                          0                 0 0
##      0.399450114450523                          0                 0 0
##      0.419739887455571                          0                 0 0
##      0.425358901761228                          0                 0 0
##      0.594035429893685                          0                 0 0
##      0.671638488556335                          0                 0 0
##      0.688092298985074                          0                 0 0
##      0.806600378227794                          0                 0 0
##      0.867455094638368                          0                 0 0
##      0.897003448844096                          0                 0 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 1.34930555555556 4.020833333 6.15
##      0.000000000123720820519974                0           0    0
##      0.0000000142143709248919                  0           0    0
##      0.0000000203570784591136                  0           0    0
##      0.0000000942663046181582                  0           0    0
##      0.0381424863643358                        0           0    0
##      0.0395235614826762                        0           0    0
##      0.0398504564629362                        0           0    0
##      0.0449831541922517                        0           0    0
##      0.150208567676068                         0           0    0
##      0.291704657263826                         0           0    0
##      0.31263158525612                          0           0    0
##      0.313581394222809                         0           0    0
##      0.399450114450523                         0           0    0
##      0.419739887455571                         0           0    0
##      0.425358901761228                         0           0    0
##      0.594035429893685                         0           0    0
##      0.671638488556335                         0           0    0
##      0.688092298985074                         0           0    0
##      0.806600378227794                         0           0    0
##      0.867455094638368                         0           0    0
##      0.897003448844096                         0           0    0
## 
## , , OTT_Time = 3, Snapchat_Time = 3.83333333333333, Instagram_Time = 0
## 
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.125 0.142361111111111 0.152777777777778
##      0.000000000123720820519974     0                 0                 0
##      0.0000000142143709248919       0                 0                 0
##      0.0000000203570784591136       0                 0                 0
##      0.0000000942663046181582       0                 0                 0
##      0.0381424863643358             0                 0                 0
##      0.0395235614826762             0                 0                 0
##      0.0398504564629362             0                 0                 0
##      0.0449831541922517             0                 0                 0
##      0.150208567676068              0                 0                 0
##      0.291704657263826              0                 0                 0
##      0.31263158525612               0                 0                 0
##      0.313581394222809              0                 0                 0
##      0.399450114450523              0                 0                 0
##      0.419739887455571              0                 0                 0
##      0.425358901761228              0                 0                 0
##      0.594035429893685              0                 0                 0
##      0.671638488556335              0                 0                 0
##      0.688092298985074              0                 0                 0
##      0.806600378227794              0                 0                 0
##      0.867455094638368              0                 0                 0
##      0.897003448844096              0                 0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.174305555555556 0.208333333333333
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.220833333333333 0.25 0.270833333333333
##      0.000000000123720820519974                 0    0                 0
##      0.0000000142143709248919                   0    0                 0
##      0.0000000203570784591136                   0    0                 0
##      0.0000000942663046181582                   0    0                 0
##      0.0381424863643358                         0    0                 0
##      0.0395235614826762                         0    0                 0
##      0.0398504564629362                         0    0                 0
##      0.0449831541922517                         0    0                 0
##      0.150208567676068                          0    0                 0
##      0.291704657263826                          0    0                 0
##      0.31263158525612                           0    0                 0
##      0.313581394222809                          0    0                 0
##      0.399450114450523                          0    0                 0
##      0.419739887455571                          0    0                 0
##      0.425358901761228                          0    0                 0
##      0.594035429893685                          0    0                 0
##      0.671638488556335                          0    0                 0
##      0.688092298985074                          0    0                 0
##      0.806600378227794                          0    0                 0
##      0.867455094638368                          0    0                 0
##      0.897003448844096                          0    0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.289583333333333 0.371527777777778
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.409722222222222 0.416666666666667 0.5 0.55625
##      0.000000000123720820519974                 0                 0   0       0
##      0.0000000142143709248919                   0                 0   0       0
##      0.0000000203570784591136                   0                 0   0       0
##      0.0000000942663046181582                   0                 0   0       0
##      0.0381424863643358                         0                 0   0       0
##      0.0395235614826762                         0                 0   0       0
##      0.0398504564629362                         0                 0   0       0
##      0.0449831541922517                         0                 0   0       0
##      0.150208567676068                          0                 0   0       0
##      0.291704657263826                          0                 0   0       0
##      0.31263158525612                           0                 0   0       0
##      0.313581394222809                          0                 0   0       0
##      0.399450114450523                          0                 0   0       0
##      0.419739887455571                          0                 0   0       0
##      0.425358901761228                          0                 0   0       0
##      0.594035429893685                          0                 0   0       0
##      0.671638488556335                          0                 0   0       0
##      0.688092298985074                          0                 0   0       0
##      0.806600378227794                          0                 0   0       0
##      0.867455094638368                          0                 0   0       0
##      0.897003448844096                          0                 0   0       0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.639583333333333 0.907785087701754 1
##      0.000000000123720820519974                 0                 0 0
##      0.0000000142143709248919                   0                 0 0
##      0.0000000203570784591136                   0                 0 0
##      0.0000000942663046181582                   0                 0 0
##      0.0381424863643358                         0                 0 0
##      0.0395235614826762                         0                 0 0
##      0.0398504564629362                         0                 0 0
##      0.0449831541922517                         0                 0 0
##      0.150208567676068                          0                 0 0
##      0.291704657263826                          0                 0 0
##      0.31263158525612                           0                 0 0
##      0.313581394222809                          0                 0 0
##      0.399450114450523                          0                 0 0
##      0.419739887455571                          0                 0 0
##      0.425358901761228                          0                 0 0
##      0.594035429893685                          0                 0 0
##      0.671638488556335                          0                 0 0
##      0.688092298985074                          0                 0 0
##      0.806600378227794                          0                 0 0
##      0.867455094638368                          0                 0 0
##      0.897003448844096                          0                 0 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 1.34930555555556 4.020833333 6.15
##      0.000000000123720820519974                0           0    0
##      0.0000000142143709248919                  0           0    0
##      0.0000000203570784591136                  0           0    0
##      0.0000000942663046181582                  0           0    0
##      0.0381424863643358                        0           0    0
##      0.0395235614826762                        0           0    0
##      0.0398504564629362                        0           0    0
##      0.0449831541922517                        0           0    0
##      0.150208567676068                         0           0    0
##      0.291704657263826                         0           0    0
##      0.31263158525612                          0           0    0
##      0.313581394222809                         0           0    0
##      0.399450114450523                         0           0    0
##      0.419739887455571                         0           0    0
##      0.425358901761228                         0           0    0
##      0.594035429893685                         0           0    0
##      0.671638488556335                         0           0    0
##      0.688092298985074                         0           0    0
##      0.806600378227794                         0           0    0
##      0.867455094638368                         0           0    0
##      0.897003448844096                         0           0    0
## 
## , , OTT_Time = 14.5, Snapchat_Time = 3.83333333333333, Instagram_Time = 0
## 
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.125 0.142361111111111 0.152777777777778
##      0.000000000123720820519974     0                 0                 0
##      0.0000000142143709248919       0                 0                 0
##      0.0000000203570784591136       0                 0                 0
##      0.0000000942663046181582       0                 0                 0
##      0.0381424863643358             0                 0                 0
##      0.0395235614826762             0                 0                 0
##      0.0398504564629362             0                 0                 0
##      0.0449831541922517             0                 0                 0
##      0.150208567676068              0                 0                 0
##      0.291704657263826              0                 0                 0
##      0.31263158525612               0                 0                 0
##      0.313581394222809              0                 0                 0
##      0.399450114450523              0                 0                 0
##      0.419739887455571              0                 0                 0
##      0.425358901761228              0                 0                 0
##      0.594035429893685              0                 0                 0
##      0.671638488556335              0                 0                 0
##      0.688092298985074              0                 0                 0
##      0.806600378227794              0                 0                 0
##      0.867455094638368              0                 0                 0
##      0.897003448844096              0                 0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.174305555555556 0.208333333333333
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.220833333333333 0.25 0.270833333333333
##      0.000000000123720820519974                 0    0                 0
##      0.0000000142143709248919                   0    0                 0
##      0.0000000203570784591136                   0    0                 0
##      0.0000000942663046181582                   0    0                 0
##      0.0381424863643358                         0    0                 0
##      0.0395235614826762                         0    0                 0
##      0.0398504564629362                         0    0                 0
##      0.0449831541922517                         0    0                 0
##      0.150208567676068                          0    0                 0
##      0.291704657263826                          0    0                 0
##      0.31263158525612                           0    0                 0
##      0.313581394222809                          0    0                 0
##      0.399450114450523                          0    0                 0
##      0.419739887455571                          0    0                 0
##      0.425358901761228                          0    0                 0
##      0.594035429893685                          0    0                 0
##      0.671638488556335                          0    0                 0
##      0.688092298985074                          0    0                 0
##      0.806600378227794                          0    0                 0
##      0.867455094638368                          0    0                 0
##      0.897003448844096                          0    0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.289583333333333 0.371527777777778
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.409722222222222 0.416666666666667 0.5 0.55625
##      0.000000000123720820519974                 0                 0   0       0
##      0.0000000142143709248919                   0                 0   0       0
##      0.0000000203570784591136                   0                 0   0       0
##      0.0000000942663046181582                   0                 0   0       0
##      0.0381424863643358                         0                 0   0       0
##      0.0395235614826762                         0                 0   0       0
##      0.0398504564629362                         0                 0   0       0
##      0.0449831541922517                         0                 0   0       0
##      0.150208567676068                          0                 0   0       0
##      0.291704657263826                          0                 0   0       0
##      0.31263158525612                           0                 0   0       0
##      0.313581394222809                          0                 0   0       0
##      0.399450114450523                          0                 0   0       0
##      0.419739887455571                          0                 0   0       0
##      0.425358901761228                          0                 0   0       0
##      0.594035429893685                          0                 0   0       0
##      0.671638488556335                          0                 0   0       0
##      0.688092298985074                          0                 0   0       0
##      0.806600378227794                          0                 0   0       0
##      0.867455094638368                          0                 0   0       0
##      0.897003448844096                          0                 0   0       0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.639583333333333 0.907785087701754 1
##      0.000000000123720820519974                 0                 0 0
##      0.0000000142143709248919                   0                 0 0
##      0.0000000203570784591136                   0                 0 0
##      0.0000000942663046181582                   0                 0 0
##      0.0381424863643358                         0                 0 0
##      0.0395235614826762                         0                 0 0
##      0.0398504564629362                         0                 0 0
##      0.0449831541922517                         0                 0 0
##      0.150208567676068                          0                 0 0
##      0.291704657263826                          0                 0 0
##      0.31263158525612                           0                 0 0
##      0.313581394222809                          0                 0 0
##      0.399450114450523                          0                 0 0
##      0.419739887455571                          0                 0 0
##      0.425358901761228                          0                 0 0
##      0.594035429893685                          0                 0 0
##      0.671638488556335                          0                 0 0
##      0.688092298985074                          0                 0 0
##      0.806600378227794                          0                 0 0
##      0.867455094638368                          0                 0 0
##      0.897003448844096                          0                 0 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 1.34930555555556 4.020833333 6.15
##      0.000000000123720820519974                0           0    0
##      0.0000000142143709248919                  0           0    0
##      0.0000000203570784591136                  0           0    0
##      0.0000000942663046181582                  0           0    0
##      0.0381424863643358                        0           0    0
##      0.0395235614826762                        0           0    0
##      0.0398504564629362                        0           0    0
##      0.0449831541922517                        0           0    0
##      0.150208567676068                         0           0    0
##      0.291704657263826                         0           0    0
##      0.31263158525612                          0           0    0
##      0.313581394222809                         0           0    0
##      0.399450114450523                         0           0    0
##      0.419739887455571                         0           0    0
##      0.425358901761228                         0           0    0
##      0.594035429893685                         0           0    0
##      0.671638488556335                         0           0    0
##      0.688092298985074                         0           0    0
##      0.806600378227794                         0           0    0
##      0.867455094638368                         0           0    0
##      0.897003448844096                         0           0    0
## 
## , , OTT_Time = 0, Snapchat_Time = 0, Instagram_Time = 0.138888888888889
## 
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.125 0.142361111111111 0.152777777777778
##      0.000000000123720820519974     0                 0                 0
##      0.0000000142143709248919       0                 0                 0
##      0.0000000203570784591136       0                 0                 0
##      0.0000000942663046181582       0                 0                 0
##      0.0381424863643358             0                 0                 0
##      0.0395235614826762             0                 0                 0
##      0.0398504564629362             0                 0                 0
##      0.0449831541922517             0                 0                 0
##      0.150208567676068              0                 0                 0
##      0.291704657263826              0                 0                 0
##      0.31263158525612               0                 0                 0
##      0.313581394222809              0                 0                 0
##      0.399450114450523              0                 0                 0
##      0.419739887455571              0                 0                 0
##      0.425358901761228              0                 0                 0
##      0.594035429893685              0                 0                 0
##      0.671638488556335              0                 0                 0
##      0.688092298985074              0                 0                 0
##      0.806600378227794              0                 0                 0
##      0.867455094638368              0                 0                 0
##      0.897003448844096              0                 0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.174305555555556 0.208333333333333
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.220833333333333 0.25 0.270833333333333
##      0.000000000123720820519974                 0    0                 0
##      0.0000000142143709248919                   0    0                 0
##      0.0000000203570784591136                   0    0                 0
##      0.0000000942663046181582                   0    0                 0
##      0.0381424863643358                         0    0                 0
##      0.0395235614826762                         0    0                 0
##      0.0398504564629362                         0    0                 0
##      0.0449831541922517                         0    0                 0
##      0.150208567676068                          0    0                 0
##      0.291704657263826                          0    0                 0
##      0.31263158525612                           0    0                 0
##      0.313581394222809                          0    0                 0
##      0.399450114450523                          0    0                 0
##      0.419739887455571                          0    0                 0
##      0.425358901761228                          0    0                 0
##      0.594035429893685                          0    0                 0
##      0.671638488556335                          0    0                 0
##      0.688092298985074                          0    0                 0
##      0.806600378227794                          0    0                 0
##      0.867455094638368                          0    0                 0
##      0.897003448844096                          0    0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.289583333333333 0.371527777777778
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.409722222222222 0.416666666666667 0.5 0.55625
##      0.000000000123720820519974                 0                 0   0       0
##      0.0000000142143709248919                   0                 0   0       0
##      0.0000000203570784591136                   0                 0   0       0
##      0.0000000942663046181582                   0                 0   0       0
##      0.0381424863643358                         0                 0   0       0
##      0.0395235614826762                         0                 0   0       0
##      0.0398504564629362                         0                 0   0       0
##      0.0449831541922517                         0                 0   0       0
##      0.150208567676068                          0                 0   0       0
##      0.291704657263826                          0                 0   0       0
##      0.31263158525612                           0                 0   0       0
##      0.313581394222809                          0                 0   0       0
##      0.399450114450523                          0                 0   0       0
##      0.419739887455571                          0                 0   0       0
##      0.425358901761228                          0                 0   0       0
##      0.594035429893685                          0                 0   0       0
##      0.671638488556335                          0                 0   0       0
##      0.688092298985074                          0                 0   0       0
##      0.806600378227794                          0                 0   0       0
##      0.867455094638368                          0                 0   0       0
##      0.897003448844096                          0                 0   0       0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.639583333333333 0.907785087701754 1
##      0.000000000123720820519974                 0                 0 0
##      0.0000000142143709248919                   0                 0 0
##      0.0000000203570784591136                   0                 0 0
##      0.0000000942663046181582                   0                 0 0
##      0.0381424863643358                         0                 0 0
##      0.0395235614826762                         0                 0 0
##      0.0398504564629362                         0                 0 0
##      0.0449831541922517                         0                 0 0
##      0.150208567676068                          0                 0 0
##      0.291704657263826                          0                 0 0
##      0.31263158525612                           0                 0 0
##      0.313581394222809                          0                 0 0
##      0.399450114450523                          0                 0 0
##      0.419739887455571                          0                 0 0
##      0.425358901761228                          0                 0 0
##      0.594035429893685                          0                 0 0
##      0.671638488556335                          0                 0 0
##      0.688092298985074                          0                 0 0
##      0.806600378227794                          0                 0 0
##      0.867455094638368                          0                 0 0
##      0.897003448844096                          0                 0 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 1.34930555555556 4.020833333 6.15
##      0.000000000123720820519974                0           0    0
##      0.0000000142143709248919                  0           0    0
##      0.0000000203570784591136                  0           0    0
##      0.0000000942663046181582                  0           0    0
##      0.0381424863643358                        0           0    0
##      0.0395235614826762                        0           0    0
##      0.0398504564629362                        0           0    0
##      0.0449831541922517                        0           0    0
##      0.150208567676068                         0           0    0
##      0.291704657263826                         0           0    0
##      0.31263158525612                          0           0    0
##      0.313581394222809                         0           0    0
##      0.399450114450523                         0           0    0
##      0.419739887455571                         0           0    0
##      0.425358901761228                         0           0    0
##      0.594035429893685                         0           0    0
##      0.671638488556335                         0           0    0
##      0.688092298985074                         0           0    0
##      0.806600378227794                         0           0    0
##      0.867455094638368                         0           0    0
##      0.897003448844096                         0           0    0
## 
## , , OTT_Time = 0.102777777777778, Snapchat_Time = 0, Instagram_Time = 0.138888888888889
## 
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.125 0.142361111111111 0.152777777777778
##      0.000000000123720820519974     0                 0                 0
##      0.0000000142143709248919       0                 0                 0
##      0.0000000203570784591136       0                 0                 0
##      0.0000000942663046181582       0                 0                 0
##      0.0381424863643358             0                 0                 0
##      0.0395235614826762             0                 0                 0
##      0.0398504564629362             0                 0                 0
##      0.0449831541922517             0                 0                 0
##      0.150208567676068              0                 0                 0
##      0.291704657263826              0                 0                 0
##      0.31263158525612               0                 0                 0
##      0.313581394222809              0                 0                 0
##      0.399450114450523              0                 0                 0
##      0.419739887455571              0                 0                 0
##      0.425358901761228              0                 0                 0
##      0.594035429893685              0                 0                 0
##      0.671638488556335              0                 0                 0
##      0.688092298985074              0                 0                 0
##      0.806600378227794              0                 0                 0
##      0.867455094638368              0                 0                 0
##      0.897003448844096              0                 0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.174305555555556 0.208333333333333
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.220833333333333 0.25 0.270833333333333
##      0.000000000123720820519974                 0    0                 0
##      0.0000000142143709248919                   0    0                 0
##      0.0000000203570784591136                   0    0                 0
##      0.0000000942663046181582                   0    0                 0
##      0.0381424863643358                         0    0                 0
##      0.0395235614826762                         0    0                 0
##      0.0398504564629362                         0    0                 0
##      0.0449831541922517                         0    0                 0
##      0.150208567676068                          0    0                 0
##      0.291704657263826                          0    0                 0
##      0.31263158525612                           0    0                 0
##      0.313581394222809                          0    0                 0
##      0.399450114450523                          0    0                 0
##      0.419739887455571                          0    0                 0
##      0.425358901761228                          0    0                 0
##      0.594035429893685                          0    0                 0
##      0.671638488556335                          0    0                 0
##      0.688092298985074                          0    0                 0
##      0.806600378227794                          0    0                 0
##      0.867455094638368                          0    0                 0
##      0.897003448844096                          0    0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.289583333333333 0.371527777777778
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.409722222222222 0.416666666666667 0.5 0.55625
##      0.000000000123720820519974                 0                 0   0       0
##      0.0000000142143709248919                   0                 0   0       0
##      0.0000000203570784591136                   0                 0   0       0
##      0.0000000942663046181582                   0                 0   0       0
##      0.0381424863643358                         0                 0   0       0
##      0.0395235614826762                         0                 0   0       0
##      0.0398504564629362                         0                 0   0       0
##      0.0449831541922517                         0                 0   0       0
##      0.150208567676068                          0                 0   0       0
##      0.291704657263826                          0                 0   0       0
##      0.31263158525612                           0                 0   0       0
##      0.313581394222809                          0                 0   0       0
##      0.399450114450523                          0                 0   0       0
##      0.419739887455571                          0                 0   0       0
##      0.425358901761228                          0                 0   0       0
##      0.594035429893685                          0                 0   0       0
##      0.671638488556335                          0                 0   0       0
##      0.688092298985074                          0                 0   0       0
##      0.806600378227794                          0                 0   0       0
##      0.867455094638368                          0                 0   0       0
##      0.897003448844096                          0                 0   0       0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.639583333333333 0.907785087701754 1
##      0.000000000123720820519974                 0                 0 0
##      0.0000000142143709248919                   0                 0 0
##      0.0000000203570784591136                   0                 0 0
##      0.0000000942663046181582                   0                 0 0
##      0.0381424863643358                         0                 0 0
##      0.0395235614826762                         0                 0 0
##      0.0398504564629362                         0                 0 0
##      0.0449831541922517                         0                 0 0
##      0.150208567676068                          0                 0 0
##      0.291704657263826                          0                 0 0
##      0.31263158525612                           0                 0 0
##      0.313581394222809                          0                 0 0
##      0.399450114450523                          0                 0 0
##      0.419739887455571                          0                 0 0
##      0.425358901761228                          0                 0 0
##      0.594035429893685                          0                 0 0
##      0.671638488556335                          0                 0 0
##      0.688092298985074                          0                 0 0
##      0.806600378227794                          0                 0 0
##      0.867455094638368                          0                 0 0
##      0.897003448844096                          0                 0 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 1.34930555555556 4.020833333 6.15
##      0.000000000123720820519974                0           0    0
##      0.0000000142143709248919                  0           0    0
##      0.0000000203570784591136                  0           0    0
##      0.0000000942663046181582                  0           0    0
##      0.0381424863643358                        0           0    0
##      0.0395235614826762                        0           0    0
##      0.0398504564629362                        0           0    0
##      0.0449831541922517                        0           0    0
##      0.150208567676068                         0           0    0
##      0.291704657263826                         0           0    0
##      0.31263158525612                          0           0    0
##      0.313581394222809                         0           0    0
##      0.399450114450523                         0           0    0
##      0.419739887455571                         0           0    0
##      0.425358901761228                         0           0    0
##      0.594035429893685                         0           0    0
##      0.671638488556335                         0           0    0
##      0.688092298985074                         0           0    0
##      0.806600378227794                         0           0    0
##      0.867455094638368                         0           0    0
##      0.897003448844096                         0           0    0
## 
## , , OTT_Time = 0.125, Snapchat_Time = 0, Instagram_Time = 0.138888888888889
## 
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.125 0.142361111111111 0.152777777777778
##      0.000000000123720820519974     0                 0                 0
##      0.0000000142143709248919       0                 0                 0
##      0.0000000203570784591136       0                 0                 0
##      0.0000000942663046181582       0                 0                 0
##      0.0381424863643358             0                 0                 0
##      0.0395235614826762             0                 0                 0
##      0.0398504564629362             0                 0                 0
##      0.0449831541922517             0                 0                 0
##      0.150208567676068              0                 0                 0
##      0.291704657263826              0                 0                 0
##      0.31263158525612               0                 0                 0
##      0.313581394222809              0                 0                 0
##      0.399450114450523              0                 0                 0
##      0.419739887455571              0                 0                 0
##      0.425358901761228              0                 0                 0
##      0.594035429893685              0                 0                 0
##      0.671638488556335              0                 0                 0
##      0.688092298985074              0                 0                 0
##      0.806600378227794              0                 0                 0
##      0.867455094638368              0                 0                 0
##      0.897003448844096              0                 0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.174305555555556 0.208333333333333
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.220833333333333 0.25 0.270833333333333
##      0.000000000123720820519974                 0    0                 0
##      0.0000000142143709248919                   0    0                 0
##      0.0000000203570784591136                   0    0                 0
##      0.0000000942663046181582                   0    0                 0
##      0.0381424863643358                         0    0                 0
##      0.0395235614826762                         0    0                 0
##      0.0398504564629362                         0    0                 0
##      0.0449831541922517                         0    0                 0
##      0.150208567676068                          0    0                 0
##      0.291704657263826                          0    0                 0
##      0.31263158525612                           0    0                 0
##      0.313581394222809                          0    0                 0
##      0.399450114450523                          0    0                 0
##      0.419739887455571                          0    0                 0
##      0.425358901761228                          0    0                 0
##      0.594035429893685                          0    0                 0
##      0.671638488556335                          0    0                 0
##      0.688092298985074                          0    0                 0
##      0.806600378227794                          0    0                 0
##      0.867455094638368                          0    0                 0
##      0.897003448844096                          0    0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.289583333333333 0.371527777777778
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.409722222222222 0.416666666666667 0.5 0.55625
##      0.000000000123720820519974                 0                 0   0       0
##      0.0000000142143709248919                   0                 0   0       0
##      0.0000000203570784591136                   0                 0   0       0
##      0.0000000942663046181582                   0                 0   0       0
##      0.0381424863643358                         0                 0   0       0
##      0.0395235614826762                         0                 0   0       0
##      0.0398504564629362                         0                 0   0       0
##      0.0449831541922517                         0                 0   0       0
##      0.150208567676068                          0                 0   0       0
##      0.291704657263826                          0                 0   0       0
##      0.31263158525612                           0                 0   0       0
##      0.313581394222809                          0                 0   0       0
##      0.399450114450523                          0                 0   0       0
##      0.419739887455571                          0                 0   0       0
##      0.425358901761228                          0                 0   0       0
##      0.594035429893685                          0                 0   0       0
##      0.671638488556335                          0                 0   0       0
##      0.688092298985074                          0                 0   0       0
##      0.806600378227794                          0                 0   0       0
##      0.867455094638368                          0                 0   0       0
##      0.897003448844096                          0                 0   0       0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.639583333333333 0.907785087701754 1
##      0.000000000123720820519974                 0                 0 0
##      0.0000000142143709248919                   0                 0 0
##      0.0000000203570784591136                   0                 0 0
##      0.0000000942663046181582                   0                 0 0
##      0.0381424863643358                         0                 0 0
##      0.0395235614826762                         0                 0 0
##      0.0398504564629362                         0                 0 0
##      0.0449831541922517                         0                 0 0
##      0.150208567676068                          0                 0 0
##      0.291704657263826                          0                 0 0
##      0.31263158525612                           0                 0 0
##      0.313581394222809                          0                 0 0
##      0.399450114450523                          0                 0 0
##      0.419739887455571                          0                 0 0
##      0.425358901761228                          0                 0 0
##      0.594035429893685                          0                 0 0
##      0.671638488556335                          0                 0 0
##      0.688092298985074                          0                 0 0
##      0.806600378227794                          0                 0 0
##      0.867455094638368                          0                 0 0
##      0.897003448844096                          0                 0 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 1.34930555555556 4.020833333 6.15
##      0.000000000123720820519974                0           0    0
##      0.0000000142143709248919                  0           0    0
##      0.0000000203570784591136                  0           0    0
##      0.0000000942663046181582                  0           0    0
##      0.0381424863643358                        0           0    0
##      0.0395235614826762                        0           0    0
##      0.0398504564629362                        0           0    0
##      0.0449831541922517                        0           0    0
##      0.150208567676068                         0           0    0
##      0.291704657263826                         0           0    0
##      0.31263158525612                          0           0    0
##      0.313581394222809                         0           0    0
##      0.399450114450523                         0           0    0
##      0.419739887455571                         0           0    0
##      0.425358901761228                         0           0    0
##      0.594035429893685                         0           0    0
##      0.671638488556335                         0           0    0
##      0.688092298985074                         0           0    0
##      0.806600378227794                         0           0    0
##      0.867455094638368                         0           0    0
##      0.897003448844096                         0           0    0
## 
## , , OTT_Time = 0.416666666666667, Snapchat_Time = 0, Instagram_Time = 0.138888888888889
## 
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.125 0.142361111111111 0.152777777777778
##      0.000000000123720820519974     0                 0                 0
##      0.0000000142143709248919       0                 0                 0
##      0.0000000203570784591136       0                 0                 0
##      0.0000000942663046181582       0                 0                 0
##      0.0381424863643358             0                 0                 0
##      0.0395235614826762             0                 0                 0
##      0.0398504564629362             0                 0                 0
##      0.0449831541922517             0                 0                 0
##      0.150208567676068              0                 0                 0
##      0.291704657263826              0                 0                 0
##      0.31263158525612               0                 0                 0
##      0.313581394222809              0                 0                 0
##      0.399450114450523              0                 0                 0
##      0.419739887455571              0                 0                 0
##      0.425358901761228              0                 0                 0
##      0.594035429893685              0                 0                 0
##      0.671638488556335              0                 0                 0
##      0.688092298985074              0                 0                 0
##      0.806600378227794              0                 0                 0
##      0.867455094638368              0                 0                 0
##      0.897003448844096              0                 0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.174305555555556 0.208333333333333
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.220833333333333 0.25 0.270833333333333
##      0.000000000123720820519974                 0    0                 0
##      0.0000000142143709248919                   0    0                 0
##      0.0000000203570784591136                   0    0                 0
##      0.0000000942663046181582                   0    0                 0
##      0.0381424863643358                         0    0                 0
##      0.0395235614826762                         0    0                 0
##      0.0398504564629362                         0    0                 0
##      0.0449831541922517                         0    0                 0
##      0.150208567676068                          0    0                 0
##      0.291704657263826                          0    0                 0
##      0.31263158525612                           0    0                 0
##      0.313581394222809                          0    0                 0
##      0.399450114450523                          0    0                 0
##      0.419739887455571                          0    0                 0
##      0.425358901761228                          0    0                 0
##      0.594035429893685                          0    0                 0
##      0.671638488556335                          0    0                 0
##      0.688092298985074                          0    0                 0
##      0.806600378227794                          0    0                 0
##      0.867455094638368                          0    0                 0
##      0.897003448844096                          0    0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.289583333333333 0.371527777777778
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.409722222222222 0.416666666666667 0.5 0.55625
##      0.000000000123720820519974                 0                 0   0       0
##      0.0000000142143709248919                   0                 0   0       0
##      0.0000000203570784591136                   0                 0   0       0
##      0.0000000942663046181582                   0                 0   0       0
##      0.0381424863643358                         0                 0   0       0
##      0.0395235614826762                         0                 0   0       0
##      0.0398504564629362                         0                 0   0       0
##      0.0449831541922517                         0                 0   0       0
##      0.150208567676068                          0                 0   0       0
##      0.291704657263826                          0                 0   0       0
##      0.31263158525612                           0                 0   0       0
##      0.313581394222809                          0                 0   0       0
##      0.399450114450523                          0                 0   0       0
##      0.419739887455571                          0                 0   0       0
##      0.425358901761228                          0                 0   0       0
##      0.594035429893685                          0                 0   0       0
##      0.671638488556335                          0                 0   0       0
##      0.688092298985074                          0                 0   0       0
##      0.806600378227794                          0                 0   0       0
##      0.867455094638368                          0                 0   0       0
##      0.897003448844096                          0                 0   0       0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.639583333333333 0.907785087701754 1
##      0.000000000123720820519974                 0                 0 0
##      0.0000000142143709248919                   0                 0 0
##      0.0000000203570784591136                   0                 0 0
##      0.0000000942663046181582                   0                 0 0
##      0.0381424863643358                         0                 0 0
##      0.0395235614826762                         0                 0 0
##      0.0398504564629362                         0                 0 0
##      0.0449831541922517                         0                 0 0
##      0.150208567676068                          0                 0 0
##      0.291704657263826                          0                 0 0
##      0.31263158525612                           0                 0 0
##      0.313581394222809                          0                 0 0
##      0.399450114450523                          0                 0 0
##      0.419739887455571                          0                 0 0
##      0.425358901761228                          0                 0 0
##      0.594035429893685                          0                 0 0
##      0.671638488556335                          0                 0 0
##      0.688092298985074                          0                 0 0
##      0.806600378227794                          0                 0 0
##      0.867455094638368                          0                 0 0
##      0.897003448844096                          0                 0 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 1.34930555555556 4.020833333 6.15
##      0.000000000123720820519974                0           0    0
##      0.0000000142143709248919                  0           0    0
##      0.0000000203570784591136                  0           0    0
##      0.0000000942663046181582                  0           0    0
##      0.0381424863643358                        0           0    0
##      0.0395235614826762                        0           0    0
##      0.0398504564629362                        0           0    0
##      0.0449831541922517                        0           0    0
##      0.150208567676068                         0           0    0
##      0.291704657263826                         0           0    0
##      0.31263158525612                          0           0    0
##      0.313581394222809                         0           0    0
##      0.399450114450523                         0           0    0
##      0.419739887455571                         0           0    0
##      0.425358901761228                         0           0    0
##      0.594035429893685                         0           0    0
##      0.671638488556335                         0           0    0
##      0.688092298985074                         0           0    0
##      0.806600378227794                         0           0    0
##      0.867455094638368                         0           0    0
##      0.897003448844096                         0           0    0
## 
## , , OTT_Time = 0.5104166667, Snapchat_Time = 0, Instagram_Time = 0.138888888888889
## 
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.125 0.142361111111111 0.152777777777778
##      0.000000000123720820519974     0                 0                 0
##      0.0000000142143709248919       0                 0                 0
##      0.0000000203570784591136       0                 0                 0
##      0.0000000942663046181582       0                 0                 0
##      0.0381424863643358             0                 0                 0
##      0.0395235614826762             0                 0                 0
##      0.0398504564629362             0                 0                 0
##      0.0449831541922517             0                 0                 0
##      0.150208567676068              0                 0                 0
##      0.291704657263826              0                 0                 0
##      0.31263158525612               0                 0                 0
##      0.313581394222809              0                 0                 0
##      0.399450114450523              0                 0                 0
##      0.419739887455571              0                 0                 0
##      0.425358901761228              0                 0                 0
##      0.594035429893685              0                 0                 0
##      0.671638488556335              0                 0                 0
##      0.688092298985074              0                 0                 0
##      0.806600378227794              0                 0                 0
##      0.867455094638368              0                 0                 0
##      0.897003448844096              0                 0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.174305555555556 0.208333333333333
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.220833333333333 0.25 0.270833333333333
##      0.000000000123720820519974                 0    0                 0
##      0.0000000142143709248919                   0    0                 0
##      0.0000000203570784591136                   0    0                 0
##      0.0000000942663046181582                   0    0                 0
##      0.0381424863643358                         0    0                 0
##      0.0395235614826762                         0    0                 0
##      0.0398504564629362                         0    0                 0
##      0.0449831541922517                         0    0                 0
##      0.150208567676068                          0    0                 0
##      0.291704657263826                          0    0                 0
##      0.31263158525612                           0    0                 0
##      0.313581394222809                          0    0                 0
##      0.399450114450523                          0    0                 0
##      0.419739887455571                          0    0                 0
##      0.425358901761228                          0    0                 0
##      0.594035429893685                          0    0                 0
##      0.671638488556335                          0    0                 0
##      0.688092298985074                          0    0                 0
##      0.806600378227794                          0    0                 0
##      0.867455094638368                          0    0                 0
##      0.897003448844096                          0    0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.289583333333333 0.371527777777778
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.409722222222222 0.416666666666667 0.5 0.55625
##      0.000000000123720820519974                 0                 0   0       0
##      0.0000000142143709248919                   0                 0   0       0
##      0.0000000203570784591136                   0                 0   0       0
##      0.0000000942663046181582                   0                 0   0       0
##      0.0381424863643358                         0                 0   0       0
##      0.0395235614826762                         0                 0   0       0
##      0.0398504564629362                         0                 0   0       0
##      0.0449831541922517                         0                 0   0       0
##      0.150208567676068                          0                 0   0       0
##      0.291704657263826                          0                 0   0       0
##      0.31263158525612                           0                 0   0       0
##      0.313581394222809                          0                 0   0       0
##      0.399450114450523                          0                 0   0       0
##      0.419739887455571                          0                 0   0       0
##      0.425358901761228                          0                 0   0       0
##      0.594035429893685                          0                 0   0       0
##      0.671638488556335                          0                 0   0       0
##      0.688092298985074                          0                 0   0       0
##      0.806600378227794                          0                 0   0       0
##      0.867455094638368                          0                 0   0       0
##      0.897003448844096                          0                 0   0       0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.639583333333333 0.907785087701754 1
##      0.000000000123720820519974                 0                 0 0
##      0.0000000142143709248919                   0                 0 0
##      0.0000000203570784591136                   0                 0 0
##      0.0000000942663046181582                   0                 0 0
##      0.0381424863643358                         0                 0 0
##      0.0395235614826762                         0                 0 0
##      0.0398504564629362                         0                 0 0
##      0.0449831541922517                         0                 0 0
##      0.150208567676068                          0                 0 0
##      0.291704657263826                          0                 0 0
##      0.31263158525612                           0                 0 0
##      0.313581394222809                          0                 0 0
##      0.399450114450523                          0                 0 0
##      0.419739887455571                          0                 0 0
##      0.425358901761228                          0                 0 0
##      0.594035429893685                          0                 0 0
##      0.671638488556335                          0                 0 0
##      0.688092298985074                          0                 0 0
##      0.806600378227794                          0                 0 0
##      0.867455094638368                          0                 0 0
##      0.897003448844096                          0                 0 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 1.34930555555556 4.020833333 6.15
##      0.000000000123720820519974                0           0    0
##      0.0000000142143709248919                  0           0    0
##      0.0000000203570784591136                  0           0    0
##      0.0000000942663046181582                  0           0    0
##      0.0381424863643358                        0           0    0
##      0.0395235614826762                        0           0    0
##      0.0398504564629362                        0           0    0
##      0.0449831541922517                        0           0    0
##      0.150208567676068                         0           0    0
##      0.291704657263826                         0           0    0
##      0.31263158525612                          0           0    0
##      0.313581394222809                         0           0    0
##      0.399450114450523                         0           0    0
##      0.419739887455571                         0           0    0
##      0.425358901761228                         0           0    0
##      0.594035429893685                         0           0    0
##      0.671638488556335                         0           0    0
##      0.688092298985074                         0           0    0
##      0.806600378227794                         0           0    0
##      0.867455094638368                         0           0    0
##      0.897003448844096                         0           0    0
## 
## , , OTT_Time = 1.44460470085726, Snapchat_Time = 0, Instagram_Time = 0.138888888888889
## 
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.125 0.142361111111111 0.152777777777778
##      0.000000000123720820519974     0                 0                 0
##      0.0000000142143709248919       0                 0                 0
##      0.0000000203570784591136       0                 0                 0
##      0.0000000942663046181582       0                 0                 0
##      0.0381424863643358             0                 0                 0
##      0.0395235614826762             0                 0                 0
##      0.0398504564629362             0                 0                 0
##      0.0449831541922517             0                 0                 0
##      0.150208567676068              0                 0                 0
##      0.291704657263826              0                 0                 0
##      0.31263158525612               0                 0                 0
##      0.313581394222809              0                 0                 0
##      0.399450114450523              0                 0                 0
##      0.419739887455571              0                 0                 0
##      0.425358901761228              0                 0                 0
##      0.594035429893685              0                 0                 0
##      0.671638488556335              0                 0                 0
##      0.688092298985074              0                 0                 0
##      0.806600378227794              0                 0                 0
##      0.867455094638368              0                 0                 0
##      0.897003448844096              0                 0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.174305555555556 0.208333333333333
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.220833333333333 0.25 0.270833333333333
##      0.000000000123720820519974                 0    0                 0
##      0.0000000142143709248919                   0    0                 0
##      0.0000000203570784591136                   0    0                 0
##      0.0000000942663046181582                   0    0                 0
##      0.0381424863643358                         0    0                 0
##      0.0395235614826762                         0    0                 0
##      0.0398504564629362                         0    0                 0
##      0.0449831541922517                         0    0                 0
##      0.150208567676068                          0    0                 0
##      0.291704657263826                          0    0                 0
##      0.31263158525612                           0    0                 0
##      0.313581394222809                          0    0                 0
##      0.399450114450523                          0    0                 0
##      0.419739887455571                          0    0                 0
##      0.425358901761228                          0    0                 0
##      0.594035429893685                          0    0                 0
##      0.671638488556335                          0    0                 0
##      0.688092298985074                          0    0                 0
##      0.806600378227794                          0    0                 0
##      0.867455094638368                          0    0                 0
##      0.897003448844096                          0    0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.289583333333333 0.371527777777778
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.409722222222222 0.416666666666667 0.5 0.55625
##      0.000000000123720820519974                 0                 0   0       0
##      0.0000000142143709248919                   0                 0   0       0
##      0.0000000203570784591136                   0                 0   0       0
##      0.0000000942663046181582                   0                 0   0       0
##      0.0381424863643358                         0                 0   0       0
##      0.0395235614826762                         0                 0   0       0
##      0.0398504564629362                         0                 0   0       0
##      0.0449831541922517                         0                 0   0       0
##      0.150208567676068                          0                 0   0       0
##      0.291704657263826                          0                 0   0       0
##      0.31263158525612                           0                 0   0       0
##      0.313581394222809                          0                 0   0       0
##      0.399450114450523                          0                 0   0       0
##      0.419739887455571                          0                 0   0       0
##      0.425358901761228                          0                 0   0       0
##      0.594035429893685                          0                 0   0       0
##      0.671638488556335                          0                 0   0       0
##      0.688092298985074                          0                 0   0       0
##      0.806600378227794                          0                 0   0       0
##      0.867455094638368                          0                 0   0       0
##      0.897003448844096                          0                 0   0       0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.639583333333333 0.907785087701754 1
##      0.000000000123720820519974                 0                 0 0
##      0.0000000142143709248919                   0                 0 0
##      0.0000000203570784591136                   0                 0 0
##      0.0000000942663046181582                   0                 0 0
##      0.0381424863643358                         0                 0 0
##      0.0395235614826762                         0                 0 0
##      0.0398504564629362                         0                 0 0
##      0.0449831541922517                         0                 0 0
##      0.150208567676068                          0                 0 0
##      0.291704657263826                          0                 0 0
##      0.31263158525612                           0                 0 0
##      0.313581394222809                          0                 0 0
##      0.399450114450523                          0                 0 0
##      0.419739887455571                          0                 0 0
##      0.425358901761228                          0                 0 0
##      0.594035429893685                          0                 0 0
##      0.671638488556335                          0                 0 0
##      0.688092298985074                          0                 0 0
##      0.806600378227794                          0                 0 0
##      0.867455094638368                          0                 0 0
##      0.897003448844096                          0                 0 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 1.34930555555556 4.020833333 6.15
##      0.000000000123720820519974                0           0    0
##      0.0000000142143709248919                  0           0    0
##      0.0000000203570784591136                  0           0    0
##      0.0000000942663046181582                  0           0    0
##      0.0381424863643358                        0           0    0
##      0.0395235614826762                        0           0    0
##      0.0398504564629362                        0           0    0
##      0.0449831541922517                        0           0    0
##      0.150208567676068                         0           0    0
##      0.291704657263826                         0           0    0
##      0.31263158525612                          0           0    0
##      0.313581394222809                         0           0    0
##      0.399450114450523                         0           0    0
##      0.419739887455571                         0           0    0
##      0.425358901761228                         0           0    0
##      0.594035429893685                         0           0    0
##      0.671638488556335                         0           0    0
##      0.688092298985074                         0           0    0
##      0.806600378227794                         0           0    0
##      0.867455094638368                         0           0    0
##      0.897003448844096                         0           0    0
## 
## , , OTT_Time = 3, Snapchat_Time = 0, Instagram_Time = 0.138888888888889
## 
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.125 0.142361111111111 0.152777777777778
##      0.000000000123720820519974     0                 0                 0
##      0.0000000142143709248919       0                 0                 0
##      0.0000000203570784591136       0                 0                 0
##      0.0000000942663046181582       0                 0                 0
##      0.0381424863643358             0                 0                 0
##      0.0395235614826762             0                 0                 0
##      0.0398504564629362             0                 0                 0
##      0.0449831541922517             0                 0                 0
##      0.150208567676068              0                 0                 0
##      0.291704657263826              0                 0                 0
##      0.31263158525612               0                 0                 0
##      0.313581394222809              0                 0                 0
##      0.399450114450523              0                 0                 0
##      0.419739887455571              0                 0                 0
##      0.425358901761228              0                 0                 0
##      0.594035429893685              0                 0                 0
##      0.671638488556335              0                 0                 0
##      0.688092298985074              0                 0                 0
##      0.806600378227794              0                 0                 0
##      0.867455094638368              0                 0                 0
##      0.897003448844096              0                 0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.174305555555556 0.208333333333333
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.220833333333333 0.25 0.270833333333333
##      0.000000000123720820519974                 0    0                 0
##      0.0000000142143709248919                   0    0                 0
##      0.0000000203570784591136                   0    0                 0
##      0.0000000942663046181582                   0    0                 0
##      0.0381424863643358                         0    0                 0
##      0.0395235614826762                         0    0                 0
##      0.0398504564629362                         0    0                 0
##      0.0449831541922517                         0    0                 0
##      0.150208567676068                          0    0                 0
##      0.291704657263826                          0    0                 0
##      0.31263158525612                           0    0                 0
##      0.313581394222809                          0    0                 0
##      0.399450114450523                          0    0                 0
##      0.419739887455571                          0    0                 0
##      0.425358901761228                          0    0                 0
##      0.594035429893685                          0    0                 0
##      0.671638488556335                          0    0                 0
##      0.688092298985074                          0    0                 0
##      0.806600378227794                          0    0                 0
##      0.867455094638368                          0    0                 0
##      0.897003448844096                          0    0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.289583333333333 0.371527777777778
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.409722222222222 0.416666666666667 0.5 0.55625
##      0.000000000123720820519974                 0                 0   0       0
##      0.0000000142143709248919                   0                 0   0       0
##      0.0000000203570784591136                   0                 0   0       0
##      0.0000000942663046181582                   0                 0   0       0
##      0.0381424863643358                         0                 0   0       0
##      0.0395235614826762                         0                 0   0       0
##      0.0398504564629362                         0                 0   0       0
##      0.0449831541922517                         0                 0   0       0
##      0.150208567676068                          0                 0   0       0
##      0.291704657263826                          0                 0   0       0
##      0.31263158525612                           0                 0   0       0
##      0.313581394222809                          0                 0   0       0
##      0.399450114450523                          0                 0   0       0
##      0.419739887455571                          0                 0   0       0
##      0.425358901761228                          0                 0   0       0
##      0.594035429893685                          0                 0   0       0
##      0.671638488556335                          0                 0   0       0
##      0.688092298985074                          0                 0   0       0
##      0.806600378227794                          0                 0   0       0
##      0.867455094638368                          0                 0   0       0
##      0.897003448844096                          0                 0   0       0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.639583333333333 0.907785087701754 1
##      0.000000000123720820519974                 0                 0 0
##      0.0000000142143709248919                   0                 0 0
##      0.0000000203570784591136                   0                 0 0
##      0.0000000942663046181582                   0                 0 0
##      0.0381424863643358                         0                 0 0
##      0.0395235614826762                         0                 0 0
##      0.0398504564629362                         0                 0 0
##      0.0449831541922517                         0                 0 0
##      0.150208567676068                          0                 0 0
##      0.291704657263826                          0                 0 0
##      0.31263158525612                           0                 0 0
##      0.313581394222809                          0                 0 0
##      0.399450114450523                          0                 0 0
##      0.419739887455571                          0                 0 0
##      0.425358901761228                          0                 0 0
##      0.594035429893685                          0                 0 0
##      0.671638488556335                          0                 0 0
##      0.688092298985074                          0                 0 0
##      0.806600378227794                          0                 0 0
##      0.867455094638368                          0                 0 0
##      0.897003448844096                          0                 0 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 1.34930555555556 4.020833333 6.15
##      0.000000000123720820519974                0           0    0
##      0.0000000142143709248919                  0           0    0
##      0.0000000203570784591136                  0           0    0
##      0.0000000942663046181582                  0           0    0
##      0.0381424863643358                        0           0    0
##      0.0395235614826762                        0           0    0
##      0.0398504564629362                        0           0    0
##      0.0449831541922517                        0           0    0
##      0.150208567676068                         0           0    0
##      0.291704657263826                         0           0    0
##      0.31263158525612                          0           0    0
##      0.313581394222809                         0           0    0
##      0.399450114450523                         0           0    0
##      0.419739887455571                         0           0    0
##      0.425358901761228                         0           0    0
##      0.594035429893685                         0           0    0
##      0.671638488556335                         0           0    0
##      0.688092298985074                         0           0    0
##      0.806600378227794                         0           0    0
##      0.867455094638368                         0           0    0
##      0.897003448844096                         0           0    0
## 
## , , OTT_Time = 14.5, Snapchat_Time = 0, Instagram_Time = 0.138888888888889
## 
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.125 0.142361111111111 0.152777777777778
##      0.000000000123720820519974     0                 0                 0
##      0.0000000142143709248919       0                 0                 0
##      0.0000000203570784591136       0                 0                 0
##      0.0000000942663046181582       0                 0                 0
##      0.0381424863643358             0                 0                 0
##      0.0395235614826762             0                 0                 0
##      0.0398504564629362             0                 0                 0
##      0.0449831541922517             0                 0                 0
##      0.150208567676068              0                 0                 0
##      0.291704657263826              0                 0                 0
##      0.31263158525612               0                 0                 0
##      0.313581394222809              0                 0                 0
##      0.399450114450523              0                 0                 0
##      0.419739887455571              0                 0                 0
##      0.425358901761228              0                 0                 0
##      0.594035429893685              0                 0                 0
##      0.671638488556335              0                 0                 0
##      0.688092298985074              0                 0                 0
##      0.806600378227794              0                 0                 0
##      0.867455094638368              0                 0                 0
##      0.897003448844096              0                 0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.174305555555556 0.208333333333333
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.220833333333333 0.25 0.270833333333333
##      0.000000000123720820519974                 0    0                 0
##      0.0000000142143709248919                   0    0                 0
##      0.0000000203570784591136                   0    0                 0
##      0.0000000942663046181582                   0    0                 0
##      0.0381424863643358                         0    0                 0
##      0.0395235614826762                         0    0                 0
##      0.0398504564629362                         0    0                 0
##      0.0449831541922517                         0    0                 0
##      0.150208567676068                          0    0                 0
##      0.291704657263826                          0    0                 0
##      0.31263158525612                           0    0                 0
##      0.313581394222809                          0    0                 0
##      0.399450114450523                          0    0                 0
##      0.419739887455571                          0    0                 0
##      0.425358901761228                          0    0                 0
##      0.594035429893685                          0    0                 0
##      0.671638488556335                          0    0                 0
##      0.688092298985074                          0    0                 0
##      0.806600378227794                          0    0                 0
##      0.867455094638368                          0    0                 0
##      0.897003448844096                          0    0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.289583333333333 0.371527777777778
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.409722222222222 0.416666666666667 0.5 0.55625
##      0.000000000123720820519974                 0                 0   0       0
##      0.0000000142143709248919                   0                 0   0       0
##      0.0000000203570784591136                   0                 0   0       0
##      0.0000000942663046181582                   0                 0   0       0
##      0.0381424863643358                         0                 0   0       0
##      0.0395235614826762                         0                 0   0       0
##      0.0398504564629362                         0                 0   0       0
##      0.0449831541922517                         0                 0   0       0
##      0.150208567676068                          0                 0   0       0
##      0.291704657263826                          0                 0   0       0
##      0.31263158525612                           0                 0   0       0
##      0.313581394222809                          0                 0   0       0
##      0.399450114450523                          0                 0   0       0
##      0.419739887455571                          0                 0   0       0
##      0.425358901761228                          0                 0   0       0
##      0.594035429893685                          0                 0   0       0
##      0.671638488556335                          0                 0   0       0
##      0.688092298985074                          0                 0   0       0
##      0.806600378227794                          0                 0   0       0
##      0.867455094638368                          0                 0   0       0
##      0.897003448844096                          0                 0   0       0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.639583333333333 0.907785087701754 1
##      0.000000000123720820519974                 0                 0 0
##      0.0000000142143709248919                   0                 0 0
##      0.0000000203570784591136                   0                 0 0
##      0.0000000942663046181582                   0                 0 0
##      0.0381424863643358                         0                 0 0
##      0.0395235614826762                         0                 0 0
##      0.0398504564629362                         0                 0 0
##      0.0449831541922517                         0                 0 0
##      0.150208567676068                          0                 0 0
##      0.291704657263826                          0                 0 0
##      0.31263158525612                           0                 0 0
##      0.313581394222809                          0                 0 0
##      0.399450114450523                          0                 0 0
##      0.419739887455571                          0                 0 0
##      0.425358901761228                          0                 0 0
##      0.594035429893685                          0                 0 0
##      0.671638488556335                          0                 0 0
##      0.688092298985074                          0                 0 0
##      0.806600378227794                          0                 0 0
##      0.867455094638368                          0                 0 0
##      0.897003448844096                          0                 0 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 1.34930555555556 4.020833333 6.15
##      0.000000000123720820519974                0           0    0
##      0.0000000142143709248919                  0           0    0
##      0.0000000203570784591136                  0           0    0
##      0.0000000942663046181582                  0           0    0
##      0.0381424863643358                        0           0    0
##      0.0395235614826762                        0           0    0
##      0.0398504564629362                        0           0    0
##      0.0449831541922517                        0           0    0
##      0.150208567676068                         0           0    0
##      0.291704657263826                         0           0    0
##      0.31263158525612                          0           0    0
##      0.313581394222809                         0           0    0
##      0.399450114450523                         0           0    0
##      0.419739887455571                         0           0    0
##      0.425358901761228                         0           0    0
##      0.594035429893685                         0           0    0
##      0.671638488556335                         0           0    0
##      0.688092298985074                         0           0    0
##      0.806600378227794                         0           0    0
##      0.867455094638368                         0           0    0
##      0.897003448844096                         0           0    0
## 
## , , OTT_Time = 0, Snapchat_Time = 0.125, Instagram_Time = 0.138888888888889
## 
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.125 0.142361111111111 0.152777777777778
##      0.000000000123720820519974     0                 0                 0
##      0.0000000142143709248919       0                 0                 0
##      0.0000000203570784591136       0                 0                 0
##      0.0000000942663046181582       0                 0                 0
##      0.0381424863643358             0                 0                 0
##      0.0395235614826762             0                 0                 0
##      0.0398504564629362             0                 0                 0
##      0.0449831541922517             0                 0                 0
##      0.150208567676068              0                 0                 0
##      0.291704657263826              0                 0                 0
##      0.31263158525612               0                 0                 0
##      0.313581394222809              0                 0                 0
##      0.399450114450523              0                 0                 0
##      0.419739887455571              0                 0                 0
##      0.425358901761228              0                 0                 0
##      0.594035429893685              0                 0                 0
##      0.671638488556335              0                 0                 0
##      0.688092298985074              0                 0                 0
##      0.806600378227794              0                 0                 0
##      0.867455094638368              0                 0                 0
##      0.897003448844096              0                 0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.174305555555556 0.208333333333333
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.220833333333333 0.25 0.270833333333333
##      0.000000000123720820519974                 0    0                 0
##      0.0000000142143709248919                   0    0                 0
##      0.0000000203570784591136                   0    0                 0
##      0.0000000942663046181582                   0    0                 0
##      0.0381424863643358                         0    0                 0
##      0.0395235614826762                         0    0                 0
##      0.0398504564629362                         0    0                 0
##      0.0449831541922517                         0    0                 0
##      0.150208567676068                          0    0                 0
##      0.291704657263826                          0    0                 0
##      0.31263158525612                           0    0                 0
##      0.313581394222809                          0    0                 0
##      0.399450114450523                          0    0                 0
##      0.419739887455571                          0    0                 0
##      0.425358901761228                          0    0                 0
##      0.594035429893685                          0    0                 0
##      0.671638488556335                          0    0                 0
##      0.688092298985074                          0    0                 0
##      0.806600378227794                          0    0                 0
##      0.867455094638368                          0    0                 0
##      0.897003448844096                          0    0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.289583333333333 0.371527777777778
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.409722222222222 0.416666666666667 0.5 0.55625
##      0.000000000123720820519974                 0                 0   0       0
##      0.0000000142143709248919                   0                 0   0       0
##      0.0000000203570784591136                   0                 0   0       0
##      0.0000000942663046181582                   0                 0   0       0
##      0.0381424863643358                         0                 0   0       0
##      0.0395235614826762                         0                 0   0       0
##      0.0398504564629362                         0                 0   0       0
##      0.0449831541922517                         0                 0   0       0
##      0.150208567676068                          0                 0   0       0
##      0.291704657263826                          0                 0   0       0
##      0.31263158525612                           0                 0   0       0
##      0.313581394222809                          0                 0   0       0
##      0.399450114450523                          0                 0   0       0
##      0.419739887455571                          0                 0   0       0
##      0.425358901761228                          0                 0   0       0
##      0.594035429893685                          0                 0   0       0
##      0.671638488556335                          0                 0   0       0
##      0.688092298985074                          0                 0   0       0
##      0.806600378227794                          0                 0   0       0
##      0.867455094638368                          0                 0   0       0
##      0.897003448844096                          0                 0   0       0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.639583333333333 0.907785087701754 1
##      0.000000000123720820519974                 0                 0 0
##      0.0000000142143709248919                   0                 0 0
##      0.0000000203570784591136                   0                 0 0
##      0.0000000942663046181582                   0                 0 0
##      0.0381424863643358                         0                 0 0
##      0.0395235614826762                         0                 0 0
##      0.0398504564629362                         0                 0 0
##      0.0449831541922517                         0                 0 0
##      0.150208567676068                          0                 0 0
##      0.291704657263826                          0                 0 0
##      0.31263158525612                           0                 0 0
##      0.313581394222809                          0                 0 0
##      0.399450114450523                          0                 0 0
##      0.419739887455571                          0                 0 0
##      0.425358901761228                          0                 0 0
##      0.594035429893685                          0                 0 0
##      0.671638488556335                          0                 0 0
##      0.688092298985074                          0                 0 0
##      0.806600378227794                          0                 0 0
##      0.867455094638368                          0                 0 0
##      0.897003448844096                          0                 0 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 1.34930555555556 4.020833333 6.15
##      0.000000000123720820519974                0           0    0
##      0.0000000142143709248919                  0           0    0
##      0.0000000203570784591136                  0           0    0
##      0.0000000942663046181582                  0           0    0
##      0.0381424863643358                        0           0    0
##      0.0395235614826762                        0           0    0
##      0.0398504564629362                        0           0    0
##      0.0449831541922517                        0           0    0
##      0.150208567676068                         0           0    0
##      0.291704657263826                         0           0    0
##      0.31263158525612                          0           0    0
##      0.313581394222809                         0           0    0
##      0.399450114450523                         0           0    0
##      0.419739887455571                         0           0    0
##      0.425358901761228                         0           0    0
##      0.594035429893685                         0           0    0
##      0.671638488556335                         0           0    0
##      0.688092298985074                         0           0    0
##      0.806600378227794                         0           0    0
##      0.867455094638368                         0           0    0
##      0.897003448844096                         0           0    0
## 
## , , OTT_Time = 0.102777777777778, Snapchat_Time = 0.125, Instagram_Time = 0.138888888888889
## 
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.125 0.142361111111111 0.152777777777778
##      0.000000000123720820519974     0                 0                 0
##      0.0000000142143709248919       0                 0                 0
##      0.0000000203570784591136       0                 0                 0
##      0.0000000942663046181582       0                 0                 0
##      0.0381424863643358             0                 0                 0
##      0.0395235614826762             0                 0                 0
##      0.0398504564629362             0                 0                 0
##      0.0449831541922517             0                 0                 0
##      0.150208567676068              0                 0                 0
##      0.291704657263826              0                 0                 0
##      0.31263158525612               0                 0                 0
##      0.313581394222809              0                 0                 0
##      0.399450114450523              0                 0                 0
##      0.419739887455571              0                 0                 0
##      0.425358901761228              0                 0                 0
##      0.594035429893685              0                 0                 0
##      0.671638488556335              0                 0                 0
##      0.688092298985074              0                 0                 0
##      0.806600378227794              0                 0                 0
##      0.867455094638368              0                 0                 0
##      0.897003448844096              0                 0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.174305555555556 0.208333333333333
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.220833333333333 0.25 0.270833333333333
##      0.000000000123720820519974                 0    0                 0
##      0.0000000142143709248919                   0    0                 0
##      0.0000000203570784591136                   0    0                 0
##      0.0000000942663046181582                   0    0                 0
##      0.0381424863643358                         0    0                 0
##      0.0395235614826762                         0    0                 0
##      0.0398504564629362                         0    0                 0
##      0.0449831541922517                         0    0                 0
##      0.150208567676068                          0    0                 0
##      0.291704657263826                          0    0                 0
##      0.31263158525612                           0    0                 0
##      0.313581394222809                          0    0                 0
##      0.399450114450523                          0    0                 0
##      0.419739887455571                          0    0                 0
##      0.425358901761228                          0    0                 0
##      0.594035429893685                          0    0                 0
##      0.671638488556335                          0    0                 0
##      0.688092298985074                          0    0                 0
##      0.806600378227794                          0    0                 0
##      0.867455094638368                          0    0                 0
##      0.897003448844096                          0    0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.289583333333333 0.371527777777778
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.409722222222222 0.416666666666667 0.5 0.55625
##      0.000000000123720820519974                 0                 0   0       0
##      0.0000000142143709248919                   0                 0   0       0
##      0.0000000203570784591136                   0                 0   0       0
##      0.0000000942663046181582                   0                 0   0       0
##      0.0381424863643358                         0                 0   0       0
##      0.0395235614826762                         0                 0   0       0
##      0.0398504564629362                         0                 0   0       0
##      0.0449831541922517                         0                 0   0       0
##      0.150208567676068                          0                 0   0       0
##      0.291704657263826                          0                 0   0       0
##      0.31263158525612                           0                 0   0       0
##      0.313581394222809                          0                 0   0       0
##      0.399450114450523                          0                 0   0       0
##      0.419739887455571                          0                 0   0       0
##      0.425358901761228                          0                 0   0       0
##      0.594035429893685                          0                 0   0       0
##      0.671638488556335                          0                 0   0       0
##      0.688092298985074                          0                 0   0       0
##      0.806600378227794                          0                 0   0       0
##      0.867455094638368                          0                 0   0       0
##      0.897003448844096                          0                 0   0       0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.639583333333333 0.907785087701754 1
##      0.000000000123720820519974                 0                 0 0
##      0.0000000142143709248919                   0                 0 0
##      0.0000000203570784591136                   0                 0 0
##      0.0000000942663046181582                   0                 0 0
##      0.0381424863643358                         0                 0 0
##      0.0395235614826762                         0                 0 0
##      0.0398504564629362                         0                 0 0
##      0.0449831541922517                         0                 0 0
##      0.150208567676068                          0                 0 0
##      0.291704657263826                          0                 0 0
##      0.31263158525612                           0                 0 0
##      0.313581394222809                          0                 0 0
##      0.399450114450523                          0                 0 0
##      0.419739887455571                          0                 0 0
##      0.425358901761228                          0                 0 0
##      0.594035429893685                          0                 0 0
##      0.671638488556335                          0                 0 0
##      0.688092298985074                          0                 0 0
##      0.806600378227794                          0                 0 0
##      0.867455094638368                          0                 0 0
##      0.897003448844096                          0                 0 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 1.34930555555556 4.020833333 6.15
##      0.000000000123720820519974                0           0    0
##      0.0000000142143709248919                  0           0    0
##      0.0000000203570784591136                  0           0    0
##      0.0000000942663046181582                  0           0    0
##      0.0381424863643358                        0           0    0
##      0.0395235614826762                        0           0    0
##      0.0398504564629362                        0           0    0
##      0.0449831541922517                        0           0    0
##      0.150208567676068                         0           0    0
##      0.291704657263826                         0           0    0
##      0.31263158525612                          0           0    0
##      0.313581394222809                         0           0    0
##      0.399450114450523                         0           0    0
##      0.419739887455571                         0           0    0
##      0.425358901761228                         0           0    0
##      0.594035429893685                         0           0    0
##      0.671638488556335                         0           0    0
##      0.688092298985074                         0           0    0
##      0.806600378227794                         0           0    0
##      0.867455094638368                         0           0    0
##      0.897003448844096                         0           0    0
## 
## , , OTT_Time = 0.125, Snapchat_Time = 0.125, Instagram_Time = 0.138888888888889
## 
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.125 0.142361111111111 0.152777777777778
##      0.000000000123720820519974     0                 0                 0
##      0.0000000142143709248919       0                 0                 0
##      0.0000000203570784591136       0                 0                 0
##      0.0000000942663046181582       0                 0                 0
##      0.0381424863643358             0                 0                 0
##      0.0395235614826762             0                 0                 0
##      0.0398504564629362             0                 0                 0
##      0.0449831541922517             0                 0                 0
##      0.150208567676068              0                 0                 0
##      0.291704657263826              0                 0                 0
##      0.31263158525612               0                 0                 0
##      0.313581394222809              0                 0                 0
##      0.399450114450523              0                 0                 0
##      0.419739887455571              0                 0                 0
##      0.425358901761228              0                 0                 0
##      0.594035429893685              0                 0                 0
##      0.671638488556335              0                 0                 0
##      0.688092298985074              0                 0                 0
##      0.806600378227794              0                 0                 0
##      0.867455094638368              0                 0                 0
##      0.897003448844096              0                 0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.174305555555556 0.208333333333333
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.220833333333333 0.25 0.270833333333333
##      0.000000000123720820519974                 0    0                 0
##      0.0000000142143709248919                   0    0                 0
##      0.0000000203570784591136                   0    0                 0
##      0.0000000942663046181582                   0    0                 0
##      0.0381424863643358                         0    0                 0
##      0.0395235614826762                         0    0                 0
##      0.0398504564629362                         0    0                 0
##      0.0449831541922517                         0    0                 0
##      0.150208567676068                          0    0                 0
##      0.291704657263826                          0    0                 0
##      0.31263158525612                           0    0                 0
##      0.313581394222809                          0    0                 0
##      0.399450114450523                          0    0                 0
##      0.419739887455571                          0    0                 0
##      0.425358901761228                          0    0                 0
##      0.594035429893685                          0    0                 0
##      0.671638488556335                          0    0                 0
##      0.688092298985074                          0    0                 0
##      0.806600378227794                          0    0                 0
##      0.867455094638368                          0    0                 0
##      0.897003448844096                          0    0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.289583333333333 0.371527777777778
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.409722222222222 0.416666666666667 0.5 0.55625
##      0.000000000123720820519974                 0                 0   0       0
##      0.0000000142143709248919                   0                 0   0       0
##      0.0000000203570784591136                   0                 0   0       0
##      0.0000000942663046181582                   0                 0   0       0
##      0.0381424863643358                         0                 0   0       0
##      0.0395235614826762                         0                 0   0       0
##      0.0398504564629362                         0                 0   0       0
##      0.0449831541922517                         0                 0   0       0
##      0.150208567676068                          0                 0   0       0
##      0.291704657263826                          0                 0   0       0
##      0.31263158525612                           0                 0   0       0
##      0.313581394222809                          0                 0   0       0
##      0.399450114450523                          0                 0   0       0
##      0.419739887455571                          0                 0   0       0
##      0.425358901761228                          0                 0   0       0
##      0.594035429893685                          0                 0   0       0
##      0.671638488556335                          0                 0   0       0
##      0.688092298985074                          0                 0   0       0
##      0.806600378227794                          0                 0   0       0
##      0.867455094638368                          0                 0   0       0
##      0.897003448844096                          0                 0   0       0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.639583333333333 0.907785087701754 1
##      0.000000000123720820519974                 0                 0 0
##      0.0000000142143709248919                   0                 0 0
##      0.0000000203570784591136                   0                 0 0
##      0.0000000942663046181582                   0                 0 0
##      0.0381424863643358                         0                 0 0
##      0.0395235614826762                         0                 0 0
##      0.0398504564629362                         0                 0 0
##      0.0449831541922517                         0                 0 0
##      0.150208567676068                          0                 0 0
##      0.291704657263826                          0                 0 0
##      0.31263158525612                           0                 0 0
##      0.313581394222809                          0                 0 0
##      0.399450114450523                          0                 0 0
##      0.419739887455571                          0                 0 0
##      0.425358901761228                          0                 0 0
##      0.594035429893685                          0                 0 0
##      0.671638488556335                          0                 0 0
##      0.688092298985074                          0                 0 0
##      0.806600378227794                          0                 0 0
##      0.867455094638368                          0                 0 0
##      0.897003448844096                          0                 0 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 1.34930555555556 4.020833333 6.15
##      0.000000000123720820519974                0           0    0
##      0.0000000142143709248919                  0           0    0
##      0.0000000203570784591136                  0           0    0
##      0.0000000942663046181582                  0           0    0
##      0.0381424863643358                        0           0    0
##      0.0395235614826762                        0           0    0
##      0.0398504564629362                        0           0    0
##      0.0449831541922517                        0           0    0
##      0.150208567676068                         0           0    0
##      0.291704657263826                         0           0    0
##      0.31263158525612                          0           0    0
##      0.313581394222809                         0           0    0
##      0.399450114450523                         0           0    0
##      0.419739887455571                         0           0    0
##      0.425358901761228                         0           0    0
##      0.594035429893685                         0           0    0
##      0.671638488556335                         0           0    0
##      0.688092298985074                         0           0    0
##      0.806600378227794                         0           0    0
##      0.867455094638368                         0           0    0
##      0.897003448844096                         0           0    0
## 
## , , OTT_Time = 0.416666666666667, Snapchat_Time = 0.125, Instagram_Time = 0.138888888888889
## 
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.125 0.142361111111111 0.152777777777778
##      0.000000000123720820519974     0                 0                 0
##      0.0000000142143709248919       0                 0                 0
##      0.0000000203570784591136       0                 0                 0
##      0.0000000942663046181582       0                 0                 0
##      0.0381424863643358             0                 0                 0
##      0.0395235614826762             0                 0                 0
##      0.0398504564629362             0                 0                 0
##      0.0449831541922517             0                 0                 0
##      0.150208567676068              0                 0                 0
##      0.291704657263826              0                 0                 0
##      0.31263158525612               0                 0                 0
##      0.313581394222809              0                 0                 0
##      0.399450114450523              0                 0                 0
##      0.419739887455571              0                 0                 0
##      0.425358901761228              0                 0                 0
##      0.594035429893685              0                 0                 0
##      0.671638488556335              0                 0                 0
##      0.688092298985074              0                 0                 0
##      0.806600378227794              0                 0                 0
##      0.867455094638368              0                 0                 0
##      0.897003448844096              0                 0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.174305555555556 0.208333333333333
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.220833333333333 0.25 0.270833333333333
##      0.000000000123720820519974                 0    0                 0
##      0.0000000142143709248919                   0    0                 0
##      0.0000000203570784591136                   0    0                 0
##      0.0000000942663046181582                   0    0                 0
##      0.0381424863643358                         0    0                 0
##      0.0395235614826762                         0    0                 0
##      0.0398504564629362                         0    0                 0
##      0.0449831541922517                         0    0                 0
##      0.150208567676068                          0    0                 0
##      0.291704657263826                          0    0                 0
##      0.31263158525612                           0    0                 0
##      0.313581394222809                          0    0                 0
##      0.399450114450523                          0    0                 0
##      0.419739887455571                          0    0                 0
##      0.425358901761228                          0    0                 0
##      0.594035429893685                          0    0                 0
##      0.671638488556335                          0    0                 0
##      0.688092298985074                          0    0                 0
##      0.806600378227794                          0    0                 0
##      0.867455094638368                          0    0                 0
##      0.897003448844096                          0    0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.289583333333333 0.371527777777778
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.409722222222222 0.416666666666667 0.5 0.55625
##      0.000000000123720820519974                 0                 0   0       0
##      0.0000000142143709248919                   0                 0   0       0
##      0.0000000203570784591136                   0                 0   0       0
##      0.0000000942663046181582                   0                 0   0       0
##      0.0381424863643358                         0                 0   0       0
##      0.0395235614826762                         0                 0   0       0
##      0.0398504564629362                         0                 0   0       0
##      0.0449831541922517                         0                 0   0       0
##      0.150208567676068                          0                 0   0       0
##      0.291704657263826                          0                 0   0       0
##      0.31263158525612                           0                 0   0       0
##      0.313581394222809                          0                 0   0       0
##      0.399450114450523                          0                 0   0       0
##      0.419739887455571                          0                 0   0       0
##      0.425358901761228                          0                 0   0       0
##      0.594035429893685                          0                 0   0       0
##      0.671638488556335                          0                 0   0       0
##      0.688092298985074                          0                 0   0       0
##      0.806600378227794                          0                 0   0       0
##      0.867455094638368                          0                 0   0       0
##      0.897003448844096                          0                 0   0       0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.639583333333333 0.907785087701754 1
##      0.000000000123720820519974                 0                 0 0
##      0.0000000142143709248919                   0                 0 0
##      0.0000000203570784591136                   0                 0 0
##      0.0000000942663046181582                   0                 0 0
##      0.0381424863643358                         0                 0 0
##      0.0395235614826762                         0                 0 0
##      0.0398504564629362                         0                 0 0
##      0.0449831541922517                         0                 0 0
##      0.150208567676068                          0                 0 0
##      0.291704657263826                          0                 0 0
##      0.31263158525612                           0                 0 0
##      0.313581394222809                          0                 0 0
##      0.399450114450523                          0                 0 0
##      0.419739887455571                          0                 0 0
##      0.425358901761228                          0                 0 0
##      0.594035429893685                          0                 0 0
##      0.671638488556335                          0                 0 0
##      0.688092298985074                          0                 0 0
##      0.806600378227794                          0                 0 0
##      0.867455094638368                          0                 0 0
##      0.897003448844096                          0                 0 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 1.34930555555556 4.020833333 6.15
##      0.000000000123720820519974                0           0    0
##      0.0000000142143709248919                  0           0    0
##      0.0000000203570784591136                  0           0    0
##      0.0000000942663046181582                  0           0    0
##      0.0381424863643358                        0           0    0
##      0.0395235614826762                        0           0    0
##      0.0398504564629362                        0           0    0
##      0.0449831541922517                        0           0    0
##      0.150208567676068                         0           0    0
##      0.291704657263826                         0           0    0
##      0.31263158525612                          0           0    0
##      0.313581394222809                         0           0    0
##      0.399450114450523                         0           0    0
##      0.419739887455571                         0           0    0
##      0.425358901761228                         0           0    0
##      0.594035429893685                         0           0    0
##      0.671638488556335                         0           0    0
##      0.688092298985074                         0           0    0
##      0.806600378227794                         0           0    0
##      0.867455094638368                         0           0    0
##      0.897003448844096                         0           0    0
## 
## , , OTT_Time = 0.5104166667, Snapchat_Time = 0.125, Instagram_Time = 0.138888888888889
## 
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.125 0.142361111111111 0.152777777777778
##      0.000000000123720820519974     0                 0                 0
##      0.0000000142143709248919       0                 0                 0
##      0.0000000203570784591136       0                 0                 0
##      0.0000000942663046181582       0                 0                 0
##      0.0381424863643358             0                 0                 0
##      0.0395235614826762             0                 0                 0
##      0.0398504564629362             0                 0                 0
##      0.0449831541922517             0                 0                 0
##      0.150208567676068              0                 0                 0
##      0.291704657263826              0                 0                 0
##      0.31263158525612               0                 0                 0
##      0.313581394222809              0                 0                 0
##      0.399450114450523              0                 0                 0
##      0.419739887455571              0                 0                 0
##      0.425358901761228              0                 0                 0
##      0.594035429893685              0                 0                 0
##      0.671638488556335              0                 0                 0
##      0.688092298985074              0                 0                 0
##      0.806600378227794              0                 0                 0
##      0.867455094638368              0                 0                 0
##      0.897003448844096              0                 0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.174305555555556 0.208333333333333
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.220833333333333 0.25 0.270833333333333
##      0.000000000123720820519974                 0    0                 0
##      0.0000000142143709248919                   0    0                 0
##      0.0000000203570784591136                   0    0                 0
##      0.0000000942663046181582                   0    0                 0
##      0.0381424863643358                         0    0                 0
##      0.0395235614826762                         0    0                 0
##      0.0398504564629362                         0    0                 0
##      0.0449831541922517                         0    0                 0
##      0.150208567676068                          0    0                 0
##      0.291704657263826                          0    0                 0
##      0.31263158525612                           0    0                 0
##      0.313581394222809                          0    0                 0
##      0.399450114450523                          0    0                 0
##      0.419739887455571                          0    0                 0
##      0.425358901761228                          0    0                 0
##      0.594035429893685                          0    0                 0
##      0.671638488556335                          0    0                 0
##      0.688092298985074                          0    0                 0
##      0.806600378227794                          0    0                 0
##      0.867455094638368                          0    0                 0
##      0.897003448844096                          0    0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.289583333333333 0.371527777777778
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.409722222222222 0.416666666666667 0.5 0.55625
##      0.000000000123720820519974                 0                 0   0       0
##      0.0000000142143709248919                   0                 0   0       0
##      0.0000000203570784591136                   0                 0   0       0
##      0.0000000942663046181582                   0                 0   0       0
##      0.0381424863643358                         0                 0   0       0
##      0.0395235614826762                         0                 0   0       0
##      0.0398504564629362                         0                 0   0       0
##      0.0449831541922517                         0                 0   0       0
##      0.150208567676068                          0                 0   0       0
##      0.291704657263826                          0                 0   0       0
##      0.31263158525612                           0                 0   0       0
##      0.313581394222809                          0                 0   0       0
##      0.399450114450523                          0                 0   0       0
##      0.419739887455571                          0                 0   0       0
##      0.425358901761228                          0                 0   0       0
##      0.594035429893685                          0                 0   0       0
##      0.671638488556335                          0                 0   0       0
##      0.688092298985074                          0                 0   0       0
##      0.806600378227794                          0                 0   0       0
##      0.867455094638368                          0                 0   0       0
##      0.897003448844096                          0                 0   0       0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.639583333333333 0.907785087701754 1
##      0.000000000123720820519974                 0                 0 0
##      0.0000000142143709248919                   0                 0 0
##      0.0000000203570784591136                   0                 0 0
##      0.0000000942663046181582                   0                 0 0
##      0.0381424863643358                         0                 0 0
##      0.0395235614826762                         0                 0 0
##      0.0398504564629362                         0                 0 0
##      0.0449831541922517                         0                 0 0
##      0.150208567676068                          0                 0 0
##      0.291704657263826                          0                 0 0
##      0.31263158525612                           0                 0 0
##      0.313581394222809                          0                 0 0
##      0.399450114450523                          0                 0 0
##      0.419739887455571                          0                 0 0
##      0.425358901761228                          0                 0 0
##      0.594035429893685                          0                 0 0
##      0.671638488556335                          0                 0 0
##      0.688092298985074                          0                 0 0
##      0.806600378227794                          0                 0 0
##      0.867455094638368                          0                 0 0
##      0.897003448844096                          0                 0 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 1.34930555555556 4.020833333 6.15
##      0.000000000123720820519974                0           0    0
##      0.0000000142143709248919                  0           0    0
##      0.0000000203570784591136                  0           0    0
##      0.0000000942663046181582                  0           0    0
##      0.0381424863643358                        0           0    0
##      0.0395235614826762                        0           0    0
##      0.0398504564629362                        0           0    0
##      0.0449831541922517                        0           0    0
##      0.150208567676068                         0           0    0
##      0.291704657263826                         0           0    0
##      0.31263158525612                          0           0    0
##      0.313581394222809                         0           0    0
##      0.399450114450523                         0           0    0
##      0.419739887455571                         0           0    0
##      0.425358901761228                         0           0    0
##      0.594035429893685                         0           0    0
##      0.671638488556335                         0           0    0
##      0.688092298985074                         0           0    0
##      0.806600378227794                         0           0    0
##      0.867455094638368                         0           0    0
##      0.897003448844096                         0           0    0
## 
## , , OTT_Time = 1.44460470085726, Snapchat_Time = 0.125, Instagram_Time = 0.138888888888889
## 
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.125 0.142361111111111 0.152777777777778
##      0.000000000123720820519974     0                 0                 0
##      0.0000000142143709248919       0                 0                 0
##      0.0000000203570784591136       0                 0                 0
##      0.0000000942663046181582       0                 0                 0
##      0.0381424863643358             0                 0                 0
##      0.0395235614826762             0                 0                 0
##      0.0398504564629362             0                 0                 0
##      0.0449831541922517             0                 0                 0
##      0.150208567676068              0                 0                 0
##      0.291704657263826              0                 0                 0
##      0.31263158525612               0                 0                 0
##      0.313581394222809              0                 0                 0
##      0.399450114450523              0                 0                 0
##      0.419739887455571              0                 0                 0
##      0.425358901761228              0                 0                 0
##      0.594035429893685              0                 0                 0
##      0.671638488556335              0                 0                 0
##      0.688092298985074              0                 0                 0
##      0.806600378227794              0                 0                 0
##      0.867455094638368              0                 0                 0
##      0.897003448844096              0                 0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.174305555555556 0.208333333333333
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.220833333333333 0.25 0.270833333333333
##      0.000000000123720820519974                 0    0                 0
##      0.0000000142143709248919                   0    0                 0
##      0.0000000203570784591136                   0    0                 0
##      0.0000000942663046181582                   0    0                 0
##      0.0381424863643358                         0    0                 0
##      0.0395235614826762                         0    0                 0
##      0.0398504564629362                         0    0                 0
##      0.0449831541922517                         0    0                 0
##      0.150208567676068                          0    0                 0
##      0.291704657263826                          0    0                 0
##      0.31263158525612                           0    0                 0
##      0.313581394222809                          0    0                 0
##      0.399450114450523                          0    0                 0
##      0.419739887455571                          0    0                 0
##      0.425358901761228                          0    0                 0
##      0.594035429893685                          0    0                 0
##      0.671638488556335                          0    0                 0
##      0.688092298985074                          0    0                 0
##      0.806600378227794                          0    0                 0
##      0.867455094638368                          0    0                 0
##      0.897003448844096                          0    0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.289583333333333 0.371527777777778
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.409722222222222 0.416666666666667 0.5 0.55625
##      0.000000000123720820519974                 0                 0   0       0
##      0.0000000142143709248919                   0                 0   0       0
##      0.0000000203570784591136                   0                 0   0       0
##      0.0000000942663046181582                   0                 0   0       0
##      0.0381424863643358                         0                 0   0       0
##      0.0395235614826762                         0                 0   0       0
##      0.0398504564629362                         0                 0   0       0
##      0.0449831541922517                         0                 0   0       0
##      0.150208567676068                          0                 0   0       0
##      0.291704657263826                          0                 0   0       0
##      0.31263158525612                           0                 0   0       0
##      0.313581394222809                          0                 0   0       0
##      0.399450114450523                          0                 0   0       0
##      0.419739887455571                          0                 0   0       0
##      0.425358901761228                          0                 0   0       0
##      0.594035429893685                          0                 0   0       0
##      0.671638488556335                          0                 0   0       0
##      0.688092298985074                          0                 0   0       0
##      0.806600378227794                          0                 0   0       0
##      0.867455094638368                          0                 0   0       0
##      0.897003448844096                          0                 0   0       0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.639583333333333 0.907785087701754 1
##      0.000000000123720820519974                 0                 0 0
##      0.0000000142143709248919                   0                 0 0
##      0.0000000203570784591136                   0                 0 0
##      0.0000000942663046181582                   0                 0 0
##      0.0381424863643358                         0                 0 0
##      0.0395235614826762                         0                 0 0
##      0.0398504564629362                         0                 0 0
##      0.0449831541922517                         0                 0 0
##      0.150208567676068                          0                 0 0
##      0.291704657263826                          0                 0 0
##      0.31263158525612                           0                 0 0
##      0.313581394222809                          0                 0 0
##      0.399450114450523                          0                 0 0
##      0.419739887455571                          0                 0 0
##      0.425358901761228                          0                 0 0
##      0.594035429893685                          0                 0 0
##      0.671638488556335                          0                 0 0
##      0.688092298985074                          0                 0 0
##      0.806600378227794                          0                 0 0
##      0.867455094638368                          0                 0 0
##      0.897003448844096                          0                 0 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 1.34930555555556 4.020833333 6.15
##      0.000000000123720820519974                0           0    0
##      0.0000000142143709248919                  0           0    0
##      0.0000000203570784591136                  0           0    0
##      0.0000000942663046181582                  0           0    0
##      0.0381424863643358                        0           0    0
##      0.0395235614826762                        0           0    0
##      0.0398504564629362                        0           0    0
##      0.0449831541922517                        0           0    0
##      0.150208567676068                         0           0    0
##      0.291704657263826                         0           0    0
##      0.31263158525612                          0           0    0
##      0.313581394222809                         0           0    0
##      0.399450114450523                         0           0    0
##      0.419739887455571                         0           0    0
##      0.425358901761228                         0           0    0
##      0.594035429893685                         0           0    0
##      0.671638488556335                         0           0    0
##      0.688092298985074                         0           0    0
##      0.806600378227794                         0           0    0
##      0.867455094638368                         0           0    0
##      0.897003448844096                         0           0    0
## 
## , , OTT_Time = 3, Snapchat_Time = 0.125, Instagram_Time = 0.138888888888889
## 
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.125 0.142361111111111 0.152777777777778
##      0.000000000123720820519974     0                 0                 0
##      0.0000000142143709248919       0                 0                 0
##      0.0000000203570784591136       0                 0                 0
##      0.0000000942663046181582       0                 0                 0
##      0.0381424863643358             0                 0                 0
##      0.0395235614826762             0                 0                 0
##      0.0398504564629362             0                 0                 0
##      0.0449831541922517             0                 0                 0
##      0.150208567676068              0                 0                 0
##      0.291704657263826              0                 0                 0
##      0.31263158525612               0                 0                 0
##      0.313581394222809              0                 0                 0
##      0.399450114450523              0                 0                 0
##      0.419739887455571              0                 0                 0
##      0.425358901761228              0                 0                 0
##      0.594035429893685              0                 0                 0
##      0.671638488556335              0                 0                 0
##      0.688092298985074              0                 0                 0
##      0.806600378227794              0                 0                 0
##      0.867455094638368              0                 0                 0
##      0.897003448844096              0                 0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.174305555555556 0.208333333333333
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.220833333333333 0.25 0.270833333333333
##      0.000000000123720820519974                 0    0                 0
##      0.0000000142143709248919                   0    0                 0
##      0.0000000203570784591136                   0    0                 0
##      0.0000000942663046181582                   0    0                 0
##      0.0381424863643358                         0    0                 0
##      0.0395235614826762                         0    0                 0
##      0.0398504564629362                         0    0                 0
##      0.0449831541922517                         0    0                 0
##      0.150208567676068                          0    0                 0
##      0.291704657263826                          0    0                 0
##      0.31263158525612                           0    0                 0
##      0.313581394222809                          0    0                 0
##      0.399450114450523                          0    0                 0
##      0.419739887455571                          0    0                 0
##      0.425358901761228                          0    0                 0
##      0.594035429893685                          0    0                 0
##      0.671638488556335                          0    0                 0
##      0.688092298985074                          0    0                 0
##      0.806600378227794                          0    0                 0
##      0.867455094638368                          0    0                 0
##      0.897003448844096                          0    0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.289583333333333 0.371527777777778
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.409722222222222 0.416666666666667 0.5 0.55625
##      0.000000000123720820519974                 0                 0   0       0
##      0.0000000142143709248919                   0                 0   0       0
##      0.0000000203570784591136                   0                 0   0       0
##      0.0000000942663046181582                   0                 0   0       0
##      0.0381424863643358                         0                 0   0       0
##      0.0395235614826762                         0                 0   0       0
##      0.0398504564629362                         0                 0   0       0
##      0.0449831541922517                         0                 0   0       0
##      0.150208567676068                          0                 0   0       0
##      0.291704657263826                          0                 0   0       0
##      0.31263158525612                           0                 0   0       0
##      0.313581394222809                          0                 0   0       0
##      0.399450114450523                          0                 0   0       0
##      0.419739887455571                          0                 0   0       0
##      0.425358901761228                          0                 0   0       0
##      0.594035429893685                          0                 0   0       0
##      0.671638488556335                          0                 0   0       0
##      0.688092298985074                          0                 0   0       0
##      0.806600378227794                          0                 0   0       0
##      0.867455094638368                          0                 0   0       0
##      0.897003448844096                          0                 0   0       0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.639583333333333 0.907785087701754 1
##      0.000000000123720820519974                 0                 0 0
##      0.0000000142143709248919                   0                 0 0
##      0.0000000203570784591136                   0                 0 0
##      0.0000000942663046181582                   0                 0 0
##      0.0381424863643358                         0                 0 0
##      0.0395235614826762                         0                 0 0
##      0.0398504564629362                         0                 0 0
##      0.0449831541922517                         0                 0 0
##      0.150208567676068                          0                 0 0
##      0.291704657263826                          0                 0 0
##      0.31263158525612                           0                 0 0
##      0.313581394222809                          0                 0 0
##      0.399450114450523                          0                 0 0
##      0.419739887455571                          0                 0 0
##      0.425358901761228                          0                 0 0
##      0.594035429893685                          0                 0 0
##      0.671638488556335                          0                 0 0
##      0.688092298985074                          0                 0 0
##      0.806600378227794                          0                 0 0
##      0.867455094638368                          0                 0 0
##      0.897003448844096                          0                 0 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 1.34930555555556 4.020833333 6.15
##      0.000000000123720820519974                0           0    0
##      0.0000000142143709248919                  0           0    0
##      0.0000000203570784591136                  0           0    0
##      0.0000000942663046181582                  0           0    0
##      0.0381424863643358                        0           0    0
##      0.0395235614826762                        0           0    0
##      0.0398504564629362                        0           0    0
##      0.0449831541922517                        0           0    0
##      0.150208567676068                         0           0    0
##      0.291704657263826                         0           0    0
##      0.31263158525612                          0           0    0
##      0.313581394222809                         0           0    0
##      0.399450114450523                         0           0    0
##      0.419739887455571                         0           0    0
##      0.425358901761228                         0           0    0
##      0.594035429893685                         0           0    0
##      0.671638488556335                         0           0    0
##      0.688092298985074                         0           0    0
##      0.806600378227794                         0           0    0
##      0.867455094638368                         0           0    0
##      0.897003448844096                         0           0    0
## 
## , , OTT_Time = 14.5, Snapchat_Time = 0.125, Instagram_Time = 0.138888888888889
## 
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.125 0.142361111111111 0.152777777777778
##      0.000000000123720820519974     0                 0                 0
##      0.0000000142143709248919       0                 0                 0
##      0.0000000203570784591136       0                 0                 0
##      0.0000000942663046181582       0                 0                 0
##      0.0381424863643358             0                 0                 0
##      0.0395235614826762             0                 0                 0
##      0.0398504564629362             0                 0                 0
##      0.0449831541922517             0                 0                 0
##      0.150208567676068              0                 0                 0
##      0.291704657263826              0                 0                 0
##      0.31263158525612               0                 0                 0
##      0.313581394222809              0                 0                 0
##      0.399450114450523              0                 0                 0
##      0.419739887455571              0                 0                 0
##      0.425358901761228              0                 0                 0
##      0.594035429893685              0                 0                 0
##      0.671638488556335              0                 0                 0
##      0.688092298985074              0                 0                 0
##      0.806600378227794              0                 0                 0
##      0.867455094638368              0                 0                 0
##      0.897003448844096              0                 0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.174305555555556 0.208333333333333
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.220833333333333 0.25 0.270833333333333
##      0.000000000123720820519974                 0    0                 0
##      0.0000000142143709248919                   0    0                 0
##      0.0000000203570784591136                   0    0                 0
##      0.0000000942663046181582                   0    0                 0
##      0.0381424863643358                         0    0                 0
##      0.0395235614826762                         0    0                 0
##      0.0398504564629362                         0    0                 0
##      0.0449831541922517                         0    0                 0
##      0.150208567676068                          0    0                 0
##      0.291704657263826                          0    0                 0
##      0.31263158525612                           0    0                 0
##      0.313581394222809                          0    0                 0
##      0.399450114450523                          0    0                 0
##      0.419739887455571                          0    0                 0
##      0.425358901761228                          0    0                 0
##      0.594035429893685                          0    0                 0
##      0.671638488556335                          0    0                 0
##      0.688092298985074                          0    0                 0
##      0.806600378227794                          0    0                 0
##      0.867455094638368                          0    0                 0
##      0.897003448844096                          0    0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.289583333333333 0.371527777777778
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.409722222222222 0.416666666666667 0.5 0.55625
##      0.000000000123720820519974                 0                 0   0       0
##      0.0000000142143709248919                   0                 0   0       0
##      0.0000000203570784591136                   0                 0   0       0
##      0.0000000942663046181582                   0                 0   0       0
##      0.0381424863643358                         0                 0   0       0
##      0.0395235614826762                         0                 0   0       0
##      0.0398504564629362                         0                 0   0       0
##      0.0449831541922517                         0                 0   0       0
##      0.150208567676068                          0                 0   0       0
##      0.291704657263826                          0                 0   0       0
##      0.31263158525612                           0                 0   0       0
##      0.313581394222809                          0                 0   0       0
##      0.399450114450523                          0                 0   0       0
##      0.419739887455571                          0                 0   0       0
##      0.425358901761228                          0                 0   0       0
##      0.594035429893685                          0                 0   0       0
##      0.671638488556335                          0                 0   0       0
##      0.688092298985074                          0                 0   0       0
##      0.806600378227794                          0                 0   0       0
##      0.867455094638368                          0                 0   0       0
##      0.897003448844096                          0                 0   0       0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.639583333333333 0.907785087701754 1
##      0.000000000123720820519974                 0                 0 0
##      0.0000000142143709248919                   0                 0 0
##      0.0000000203570784591136                   0                 0 0
##      0.0000000942663046181582                   0                 0 0
##      0.0381424863643358                         0                 0 0
##      0.0395235614826762                         0                 0 0
##      0.0398504564629362                         0                 0 0
##      0.0449831541922517                         0                 0 0
##      0.150208567676068                          0                 0 0
##      0.291704657263826                          0                 0 0
##      0.31263158525612                           0                 0 0
##      0.313581394222809                          0                 0 0
##      0.399450114450523                          0                 0 0
##      0.419739887455571                          0                 0 0
##      0.425358901761228                          0                 0 0
##      0.594035429893685                          0                 0 0
##      0.671638488556335                          0                 0 0
##      0.688092298985074                          0                 0 0
##      0.806600378227794                          0                 0 0
##      0.867455094638368                          0                 0 0
##      0.897003448844096                          0                 0 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 1.34930555555556 4.020833333 6.15
##      0.000000000123720820519974                0           0    0
##      0.0000000142143709248919                  0           0    0
##      0.0000000203570784591136                  0           0    0
##      0.0000000942663046181582                  0           0    0
##      0.0381424863643358                        0           0    0
##      0.0395235614826762                        0           0    0
##      0.0398504564629362                        0           0    0
##      0.0449831541922517                        0           0    0
##      0.150208567676068                         0           0    0
##      0.291704657263826                         0           0    0
##      0.31263158525612                          0           0    0
##      0.313581394222809                         0           0    0
##      0.399450114450523                         0           0    0
##      0.419739887455571                         0           0    0
##      0.425358901761228                         0           0    0
##      0.594035429893685                         0           0    0
##      0.671638488556335                         0           0    0
##      0.688092298985074                         0           0    0
##      0.806600378227794                         0           0    0
##      0.867455094638368                         0           0    0
##      0.897003448844096                         0           0    0
## 
## , , OTT_Time = 0, Snapchat_Time = 0.153472222222222, Instagram_Time = 0.138888888888889
## 
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.125 0.142361111111111 0.152777777777778
##      0.000000000123720820519974     0                 0                 0
##      0.0000000142143709248919       0                 0                 0
##      0.0000000203570784591136       0                 0                 0
##      0.0000000942663046181582       0                 0                 0
##      0.0381424863643358             0                 0                 0
##      0.0395235614826762             0                 0                 0
##      0.0398504564629362             0                 0                 0
##      0.0449831541922517             0                 0                 0
##      0.150208567676068              0                 0                 0
##      0.291704657263826              0                 0                 0
##      0.31263158525612               0                 0                 0
##      0.313581394222809              0                 0                 0
##      0.399450114450523              0                 0                 0
##      0.419739887455571              0                 0                 0
##      0.425358901761228              0                 0                 0
##      0.594035429893685              0                 0                 0
##      0.671638488556335              0                 0                 0
##      0.688092298985074              0                 0                 0
##      0.806600378227794              0                 0                 0
##      0.867455094638368              0                 0                 0
##      0.897003448844096              0                 0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.174305555555556 0.208333333333333
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.220833333333333 0.25 0.270833333333333
##      0.000000000123720820519974                 0    0                 0
##      0.0000000142143709248919                   0    0                 0
##      0.0000000203570784591136                   0    0                 0
##      0.0000000942663046181582                   0    0                 0
##      0.0381424863643358                         0    0                 0
##      0.0395235614826762                         0    0                 0
##      0.0398504564629362                         0    0                 0
##      0.0449831541922517                         0    0                 0
##      0.150208567676068                          0    0                 0
##      0.291704657263826                          0    0                 0
##      0.31263158525612                           0    0                 0
##      0.313581394222809                          0    0                 0
##      0.399450114450523                          0    0                 0
##      0.419739887455571                          0    0                 0
##      0.425358901761228                          0    0                 0
##      0.594035429893685                          0    0                 0
##      0.671638488556335                          0    0                 0
##      0.688092298985074                          0    0                 0
##      0.806600378227794                          0    0                 0
##      0.867455094638368                          0    0                 0
##      0.897003448844096                          0    0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.289583333333333 0.371527777777778
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.409722222222222 0.416666666666667 0.5 0.55625
##      0.000000000123720820519974                 0                 0   0       0
##      0.0000000142143709248919                   0                 0   0       0
##      0.0000000203570784591136                   0                 0   0       0
##      0.0000000942663046181582                   0                 0   0       0
##      0.0381424863643358                         0                 0   0       0
##      0.0395235614826762                         0                 0   0       0
##      0.0398504564629362                         0                 0   0       0
##      0.0449831541922517                         0                 0   0       0
##      0.150208567676068                          0                 0   0       0
##      0.291704657263826                          0                 0   0       0
##      0.31263158525612                           0                 0   0       0
##      0.313581394222809                          0                 0   0       0
##      0.399450114450523                          0                 0   0       0
##      0.419739887455571                          0                 0   0       0
##      0.425358901761228                          0                 0   0       0
##      0.594035429893685                          0                 0   0       0
##      0.671638488556335                          0                 0   0       0
##      0.688092298985074                          0                 0   0       0
##      0.806600378227794                          0                 0   0       0
##      0.867455094638368                          0                 0   0       0
##      0.897003448844096                          0                 0   0       0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.639583333333333 0.907785087701754 1
##      0.000000000123720820519974                 0                 0 0
##      0.0000000142143709248919                   0                 0 0
##      0.0000000203570784591136                   0                 0 0
##      0.0000000942663046181582                   0                 0 0
##      0.0381424863643358                         0                 0 0
##      0.0395235614826762                         0                 0 0
##      0.0398504564629362                         0                 0 0
##      0.0449831541922517                         0                 0 0
##      0.150208567676068                          0                 0 0
##      0.291704657263826                          0                 0 0
##      0.31263158525612                           0                 0 0
##      0.313581394222809                          0                 0 0
##      0.399450114450523                          0                 0 0
##      0.419739887455571                          0                 0 0
##      0.425358901761228                          0                 0 0
##      0.594035429893685                          0                 0 0
##      0.671638488556335                          0                 0 0
##      0.688092298985074                          0                 0 0
##      0.806600378227794                          0                 0 0
##      0.867455094638368                          0                 0 0
##      0.897003448844096                          0                 0 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 1.34930555555556 4.020833333 6.15
##      0.000000000123720820519974                0           0    0
##      0.0000000142143709248919                  0           0    0
##      0.0000000203570784591136                  0           0    0
##      0.0000000942663046181582                  0           0    0
##      0.0381424863643358                        0           0    0
##      0.0395235614826762                        0           0    0
##      0.0398504564629362                        0           0    0
##      0.0449831541922517                        0           0    0
##      0.150208567676068                         0           0    0
##      0.291704657263826                         0           0    0
##      0.31263158525612                          0           0    0
##      0.313581394222809                         0           0    0
##      0.399450114450523                         0           0    0
##      0.419739887455571                         0           0    0
##      0.425358901761228                         0           0    0
##      0.594035429893685                         0           0    0
##      0.671638488556335                         0           0    0
##      0.688092298985074                         0           0    0
##      0.806600378227794                         0           0    0
##      0.867455094638368                         0           0    0
##      0.897003448844096                         0           0    0
## 
## , , OTT_Time = 0.102777777777778, Snapchat_Time = 0.153472222222222, Instagram_Time = 0.138888888888889
## 
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.125 0.142361111111111 0.152777777777778
##      0.000000000123720820519974     0                 0                 0
##      0.0000000142143709248919       0                 0                 0
##      0.0000000203570784591136       0                 0                 0
##      0.0000000942663046181582       0                 0                 0
##      0.0381424863643358             0                 0                 0
##      0.0395235614826762             0                 0                 0
##      0.0398504564629362             0                 0                 0
##      0.0449831541922517             0                 0                 0
##      0.150208567676068              0                 0                 0
##      0.291704657263826              0                 0                 0
##      0.31263158525612               0                 0                 0
##      0.313581394222809              0                 0                 0
##      0.399450114450523              0                 0                 0
##      0.419739887455571              0                 0                 0
##      0.425358901761228              0                 0                 0
##      0.594035429893685              0                 0                 0
##      0.671638488556335              0                 0                 0
##      0.688092298985074              0                 0                 0
##      0.806600378227794              0                 0                 0
##      0.867455094638368              0                 0                 0
##      0.897003448844096              0                 0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.174305555555556 0.208333333333333
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.220833333333333 0.25 0.270833333333333
##      0.000000000123720820519974                 0    0                 0
##      0.0000000142143709248919                   0    0                 0
##      0.0000000203570784591136                   0    0                 0
##      0.0000000942663046181582                   0    0                 0
##      0.0381424863643358                         0    0                 0
##      0.0395235614826762                         0    0                 0
##      0.0398504564629362                         0    0                 0
##      0.0449831541922517                         0    0                 0
##      0.150208567676068                          0    0                 0
##      0.291704657263826                          0    0                 0
##      0.31263158525612                           0    0                 0
##      0.313581394222809                          0    0                 0
##      0.399450114450523                          0    0                 0
##      0.419739887455571                          0    0                 0
##      0.425358901761228                          0    0                 0
##      0.594035429893685                          0    0                 0
##      0.671638488556335                          0    0                 0
##      0.688092298985074                          0    0                 0
##      0.806600378227794                          0    0                 0
##      0.867455094638368                          0    0                 0
##      0.897003448844096                          0    0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.289583333333333 0.371527777777778
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.409722222222222 0.416666666666667 0.5 0.55625
##      0.000000000123720820519974                 0                 0   0       0
##      0.0000000142143709248919                   0                 0   0       0
##      0.0000000203570784591136                   0                 0   0       0
##      0.0000000942663046181582                   0                 0   0       0
##      0.0381424863643358                         0                 0   0       0
##      0.0395235614826762                         0                 0   0       0
##      0.0398504564629362                         0                 0   0       0
##      0.0449831541922517                         0                 0   0       0
##      0.150208567676068                          0                 0   0       0
##      0.291704657263826                          0                 0   0       0
##      0.31263158525612                           0                 0   0       0
##      0.313581394222809                          0                 0   0       0
##      0.399450114450523                          0                 0   0       0
##      0.419739887455571                          0                 0   0       0
##      0.425358901761228                          0                 0   0       0
##      0.594035429893685                          0                 0   0       0
##      0.671638488556335                          0                 0   0       0
##      0.688092298985074                          0                 0   0       0
##      0.806600378227794                          0                 0   0       0
##      0.867455094638368                          0                 0   0       0
##      0.897003448844096                          0                 0   0       0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.639583333333333 0.907785087701754 1
##      0.000000000123720820519974                 0                 0 0
##      0.0000000142143709248919                   0                 0 0
##      0.0000000203570784591136                   0                 0 0
##      0.0000000942663046181582                   0                 0 0
##      0.0381424863643358                         0                 0 0
##      0.0395235614826762                         0                 0 0
##      0.0398504564629362                         0                 0 0
##      0.0449831541922517                         0                 0 0
##      0.150208567676068                          0                 0 0
##      0.291704657263826                          0                 0 0
##      0.31263158525612                           0                 0 0
##      0.313581394222809                          0                 0 0
##      0.399450114450523                          0                 0 0
##      0.419739887455571                          0                 0 0
##      0.425358901761228                          0                 0 0
##      0.594035429893685                          0                 0 0
##      0.671638488556335                          0                 0 0
##      0.688092298985074                          0                 0 0
##      0.806600378227794                          0                 0 0
##      0.867455094638368                          0                 0 0
##      0.897003448844096                          0                 0 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 1.34930555555556 4.020833333 6.15
##      0.000000000123720820519974                0           0    0
##      0.0000000142143709248919                  0           0    0
##      0.0000000203570784591136                  0           0    0
##      0.0000000942663046181582                  0           0    0
##      0.0381424863643358                        0           0    0
##      0.0395235614826762                        0           0    0
##      0.0398504564629362                        0           0    0
##      0.0449831541922517                        0           0    0
##      0.150208567676068                         0           0    0
##      0.291704657263826                         0           0    0
##      0.31263158525612                          0           0    0
##      0.313581394222809                         0           0    0
##      0.399450114450523                         0           0    0
##      0.419739887455571                         0           0    0
##      0.425358901761228                         0           0    0
##      0.594035429893685                         0           0    0
##      0.671638488556335                         0           0    0
##      0.688092298985074                         0           0    0
##      0.806600378227794                         0           0    0
##      0.867455094638368                         0           0    0
##      0.897003448844096                         0           0    0
## 
## , , OTT_Time = 0.125, Snapchat_Time = 0.153472222222222, Instagram_Time = 0.138888888888889
## 
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.125 0.142361111111111 0.152777777777778
##      0.000000000123720820519974     0                 0                 0
##      0.0000000142143709248919       0                 0                 0
##      0.0000000203570784591136       0                 0                 0
##      0.0000000942663046181582       0                 0                 0
##      0.0381424863643358             0                 0                 0
##      0.0395235614826762             0                 0                 0
##      0.0398504564629362             0                 0                 0
##      0.0449831541922517             0                 0                 0
##      0.150208567676068              0                 0                 0
##      0.291704657263826              0                 0                 0
##      0.31263158525612               0                 0                 0
##      0.313581394222809              0                 0                 0
##      0.399450114450523              0                 0                 0
##      0.419739887455571              0                 0                 0
##      0.425358901761228              0                 0                 0
##      0.594035429893685              0                 0                 0
##      0.671638488556335              0                 0                 0
##      0.688092298985074              0                 0                 0
##      0.806600378227794              0                 0                 0
##      0.867455094638368              0                 0                 0
##      0.897003448844096              0                 0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.174305555555556 0.208333333333333
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.220833333333333 0.25 0.270833333333333
##      0.000000000123720820519974                 0    0                 0
##      0.0000000142143709248919                   0    0                 0
##      0.0000000203570784591136                   0    0                 0
##      0.0000000942663046181582                   0    0                 0
##      0.0381424863643358                         0    0                 0
##      0.0395235614826762                         0    0                 0
##      0.0398504564629362                         0    0                 0
##      0.0449831541922517                         0    0                 0
##      0.150208567676068                          0    0                 0
##      0.291704657263826                          0    0                 0
##      0.31263158525612                           0    0                 0
##      0.313581394222809                          0    0                 0
##      0.399450114450523                          0    0                 0
##      0.419739887455571                          0    0                 0
##      0.425358901761228                          0    0                 0
##      0.594035429893685                          0    0                 0
##      0.671638488556335                          0    0                 0
##      0.688092298985074                          0    0                 0
##      0.806600378227794                          0    0                 0
##      0.867455094638368                          0    0                 0
##      0.897003448844096                          0    0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.289583333333333 0.371527777777778
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.409722222222222 0.416666666666667 0.5 0.55625
##      0.000000000123720820519974                 0                 0   0       0
##      0.0000000142143709248919                   0                 0   0       0
##      0.0000000203570784591136                   0                 0   0       0
##      0.0000000942663046181582                   0                 0   0       0
##      0.0381424863643358                         0                 0   0       0
##      0.0395235614826762                         0                 0   0       0
##      0.0398504564629362                         0                 0   0       0
##      0.0449831541922517                         0                 0   0       0
##      0.150208567676068                          0                 0   0       0
##      0.291704657263826                          0                 0   0       0
##      0.31263158525612                           0                 0   0       0
##      0.313581394222809                          0                 0   0       0
##      0.399450114450523                          0                 0   0       0
##      0.419739887455571                          0                 0   0       0
##      0.425358901761228                          0                 0   0       0
##      0.594035429893685                          0                 0   0       0
##      0.671638488556335                          0                 0   0       0
##      0.688092298985074                          0                 0   0       0
##      0.806600378227794                          0                 0   0       0
##      0.867455094638368                          0                 0   0       0
##      0.897003448844096                          0                 0   0       0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.639583333333333 0.907785087701754 1
##      0.000000000123720820519974                 0                 0 0
##      0.0000000142143709248919                   0                 0 0
##      0.0000000203570784591136                   0                 0 0
##      0.0000000942663046181582                   0                 0 0
##      0.0381424863643358                         0                 0 0
##      0.0395235614826762                         0                 0 0
##      0.0398504564629362                         0                 0 0
##      0.0449831541922517                         0                 0 0
##      0.150208567676068                          0                 0 0
##      0.291704657263826                          0                 0 0
##      0.31263158525612                           0                 0 0
##      0.313581394222809                          0                 0 0
##      0.399450114450523                          0                 0 0
##      0.419739887455571                          0                 0 0
##      0.425358901761228                          0                 0 0
##      0.594035429893685                          0                 0 0
##      0.671638488556335                          0                 0 0
##      0.688092298985074                          0                 0 0
##      0.806600378227794                          0                 0 0
##      0.867455094638368                          0                 0 0
##      0.897003448844096                          0                 0 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 1.34930555555556 4.020833333 6.15
##      0.000000000123720820519974                0           0    0
##      0.0000000142143709248919                  0           0    0
##      0.0000000203570784591136                  0           0    0
##      0.0000000942663046181582                  0           0    0
##      0.0381424863643358                        0           0    0
##      0.0395235614826762                        0           0    0
##      0.0398504564629362                        0           0    0
##      0.0449831541922517                        0           0    0
##      0.150208567676068                         0           0    0
##      0.291704657263826                         0           0    0
##      0.31263158525612                          0           0    0
##      0.313581394222809                         0           0    0
##      0.399450114450523                         0           0    0
##      0.419739887455571                         0           0    0
##      0.425358901761228                         0           0    0
##      0.594035429893685                         0           0    0
##      0.671638488556335                         0           0    0
##      0.688092298985074                         0           0    0
##      0.806600378227794                         0           0    0
##      0.867455094638368                         0           0    0
##      0.897003448844096                         0           0    0
## 
## , , OTT_Time = 0.416666666666667, Snapchat_Time = 0.153472222222222, Instagram_Time = 0.138888888888889
## 
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.125 0.142361111111111 0.152777777777778
##      0.000000000123720820519974     0                 0                 0
##      0.0000000142143709248919       0                 0                 0
##      0.0000000203570784591136       0                 0                 0
##      0.0000000942663046181582       0                 0                 0
##      0.0381424863643358             0                 0                 0
##      0.0395235614826762             0                 0                 0
##      0.0398504564629362             0                 0                 0
##      0.0449831541922517             0                 0                 0
##      0.150208567676068              0                 0                 0
##      0.291704657263826              0                 0                 0
##      0.31263158525612               0                 0                 0
##      0.313581394222809              0                 0                 0
##      0.399450114450523              0                 0                 0
##      0.419739887455571              0                 0                 0
##      0.425358901761228              0                 0                 0
##      0.594035429893685              0                 0                 0
##      0.671638488556335              0                 0                 0
##      0.688092298985074              0                 0                 0
##      0.806600378227794              0                 0                 0
##      0.867455094638368              0                 0                 0
##      0.897003448844096              0                 0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.174305555555556 0.208333333333333
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.220833333333333 0.25 0.270833333333333
##      0.000000000123720820519974                 0    0                 0
##      0.0000000142143709248919                   0    0                 0
##      0.0000000203570784591136                   0    0                 0
##      0.0000000942663046181582                   0    0                 0
##      0.0381424863643358                         0    0                 0
##      0.0395235614826762                         0    0                 0
##      0.0398504564629362                         0    0                 0
##      0.0449831541922517                         0    0                 0
##      0.150208567676068                          0    0                 0
##      0.291704657263826                          0    0                 0
##      0.31263158525612                           0    0                 0
##      0.313581394222809                          0    0                 0
##      0.399450114450523                          0    0                 0
##      0.419739887455571                          0    0                 0
##      0.425358901761228                          0    0                 0
##      0.594035429893685                          0    0                 0
##      0.671638488556335                          0    0                 0
##      0.688092298985074                          0    0                 0
##      0.806600378227794                          0    0                 0
##      0.867455094638368                          0    0                 0
##      0.897003448844096                          0    0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.289583333333333 0.371527777777778
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.409722222222222 0.416666666666667 0.5 0.55625
##      0.000000000123720820519974                 0                 0   0       0
##      0.0000000142143709248919                   0                 0   0       0
##      0.0000000203570784591136                   0                 0   0       0
##      0.0000000942663046181582                   0                 0   0       0
##      0.0381424863643358                         0                 0   0       0
##      0.0395235614826762                         0                 0   0       0
##      0.0398504564629362                         0                 0   0       0
##      0.0449831541922517                         0                 0   0       0
##      0.150208567676068                          0                 0   0       0
##      0.291704657263826                          0                 0   0       0
##      0.31263158525612                           0                 0   0       0
##      0.313581394222809                          0                 0   0       0
##      0.399450114450523                          0                 0   0       0
##      0.419739887455571                          0                 0   0       0
##      0.425358901761228                          0                 0   0       0
##      0.594035429893685                          0                 0   0       0
##      0.671638488556335                          0                 0   0       0
##      0.688092298985074                          0                 0   0       0
##      0.806600378227794                          0                 0   0       0
##      0.867455094638368                          0                 0   0       0
##      0.897003448844096                          0                 0   0       0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.639583333333333 0.907785087701754 1
##      0.000000000123720820519974                 0                 0 0
##      0.0000000142143709248919                   0                 0 0
##      0.0000000203570784591136                   0                 0 0
##      0.0000000942663046181582                   0                 0 0
##      0.0381424863643358                         0                 0 0
##      0.0395235614826762                         0                 0 0
##      0.0398504564629362                         0                 0 0
##      0.0449831541922517                         0                 0 0
##      0.150208567676068                          0                 0 0
##      0.291704657263826                          0                 0 0
##      0.31263158525612                           0                 0 0
##      0.313581394222809                          0                 0 0
##      0.399450114450523                          0                 0 0
##      0.419739887455571                          0                 0 0
##      0.425358901761228                          0                 0 0
##      0.594035429893685                          0                 0 0
##      0.671638488556335                          0                 0 0
##      0.688092298985074                          0                 0 0
##      0.806600378227794                          0                 0 0
##      0.867455094638368                          0                 0 0
##      0.897003448844096                          0                 0 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 1.34930555555556 4.020833333 6.15
##      0.000000000123720820519974                0           0    0
##      0.0000000142143709248919                  0           0    0
##      0.0000000203570784591136                  0           0    0
##      0.0000000942663046181582                  0           0    0
##      0.0381424863643358                        0           0    0
##      0.0395235614826762                        0           0    0
##      0.0398504564629362                        0           0    0
##      0.0449831541922517                        0           0    0
##      0.150208567676068                         0           0    0
##      0.291704657263826                         0           0    0
##      0.31263158525612                          0           0    0
##      0.313581394222809                         0           0    0
##      0.399450114450523                         0           0    0
##      0.419739887455571                         0           0    0
##      0.425358901761228                         0           0    0
##      0.594035429893685                         0           0    0
##      0.671638488556335                         0           0    0
##      0.688092298985074                         0           0    0
##      0.806600378227794                         0           0    0
##      0.867455094638368                         0           0    0
##      0.897003448844096                         0           0    0
## 
## , , OTT_Time = 0.5104166667, Snapchat_Time = 0.153472222222222, Instagram_Time = 0.138888888888889
## 
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.125 0.142361111111111 0.152777777777778
##      0.000000000123720820519974     0                 0                 0
##      0.0000000142143709248919       0                 0                 0
##      0.0000000203570784591136       0                 0                 0
##      0.0000000942663046181582       0                 0                 0
##      0.0381424863643358             0                 0                 0
##      0.0395235614826762             0                 0                 0
##      0.0398504564629362             0                 0                 0
##      0.0449831541922517             0                 0                 0
##      0.150208567676068              0                 0                 0
##      0.291704657263826              0                 0                 0
##      0.31263158525612               0                 0                 0
##      0.313581394222809              0                 0                 0
##      0.399450114450523              0                 0                 0
##      0.419739887455571              0                 0                 0
##      0.425358901761228              0                 0                 0
##      0.594035429893685              0                 0                 0
##      0.671638488556335              0                 0                 0
##      0.688092298985074              0                 0                 0
##      0.806600378227794              0                 0                 0
##      0.867455094638368              0                 0                 0
##      0.897003448844096              0                 0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.174305555555556 0.208333333333333
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.220833333333333 0.25 0.270833333333333
##      0.000000000123720820519974                 0    0                 0
##      0.0000000142143709248919                   0    0                 0
##      0.0000000203570784591136                   0    0                 0
##      0.0000000942663046181582                   0    0                 0
##      0.0381424863643358                         0    0                 0
##      0.0395235614826762                         0    0                 0
##      0.0398504564629362                         0    0                 0
##      0.0449831541922517                         0    0                 0
##      0.150208567676068                          0    0                 0
##      0.291704657263826                          0    0                 0
##      0.31263158525612                           0    0                 0
##      0.313581394222809                          0    0                 0
##      0.399450114450523                          0    0                 0
##      0.419739887455571                          0    0                 0
##      0.425358901761228                          0    0                 0
##      0.594035429893685                          0    0                 0
##      0.671638488556335                          0    0                 0
##      0.688092298985074                          0    0                 0
##      0.806600378227794                          0    0                 0
##      0.867455094638368                          0    0                 0
##      0.897003448844096                          0    0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.289583333333333 0.371527777777778
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.409722222222222 0.416666666666667 0.5 0.55625
##      0.000000000123720820519974                 0                 0   0       0
##      0.0000000142143709248919                   0                 0   0       0
##      0.0000000203570784591136                   0                 0   0       0
##      0.0000000942663046181582                   0                 0   0       0
##      0.0381424863643358                         0                 0   0       0
##      0.0395235614826762                         0                 0   0       0
##      0.0398504564629362                         0                 0   0       0
##      0.0449831541922517                         0                 0   0       0
##      0.150208567676068                          0                 0   0       0
##      0.291704657263826                          0                 0   0       0
##      0.31263158525612                           0                 0   0       0
##      0.313581394222809                          0                 0   0       0
##      0.399450114450523                          0                 0   0       0
##      0.419739887455571                          0                 0   0       0
##      0.425358901761228                          0                 0   0       0
##      0.594035429893685                          0                 0   0       0
##      0.671638488556335                          0                 0   0       0
##      0.688092298985074                          0                 0   0       0
##      0.806600378227794                          0                 0   0       0
##      0.867455094638368                          0                 0   0       0
##      0.897003448844096                          0                 0   0       0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.639583333333333 0.907785087701754 1
##      0.000000000123720820519974                 0                 0 0
##      0.0000000142143709248919                   0                 0 0
##      0.0000000203570784591136                   0                 0 0
##      0.0000000942663046181582                   0                 0 0
##      0.0381424863643358                         0                 0 0
##      0.0395235614826762                         0                 0 0
##      0.0398504564629362                         0                 0 0
##      0.0449831541922517                         0                 0 0
##      0.150208567676068                          0                 0 0
##      0.291704657263826                          0                 0 0
##      0.31263158525612                           0                 0 0
##      0.313581394222809                          0                 0 0
##      0.399450114450523                          0                 0 0
##      0.419739887455571                          0                 0 0
##      0.425358901761228                          0                 0 0
##      0.594035429893685                          0                 0 0
##      0.671638488556335                          0                 0 0
##      0.688092298985074                          0                 0 0
##      0.806600378227794                          0                 0 0
##      0.867455094638368                          0                 0 0
##      0.897003448844096                          0                 0 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 1.34930555555556 4.020833333 6.15
##      0.000000000123720820519974                0           0    0
##      0.0000000142143709248919                  0           0    0
##      0.0000000203570784591136                  0           0    0
##      0.0000000942663046181582                  0           0    0
##      0.0381424863643358                        0           0    0
##      0.0395235614826762                        0           0    0
##      0.0398504564629362                        0           0    0
##      0.0449831541922517                        0           0    0
##      0.150208567676068                         0           0    0
##      0.291704657263826                         0           0    0
##      0.31263158525612                          0           0    0
##      0.313581394222809                         0           0    0
##      0.399450114450523                         0           0    0
##      0.419739887455571                         0           0    0
##      0.425358901761228                         0           0    0
##      0.594035429893685                         0           0    0
##      0.671638488556335                         0           0    0
##      0.688092298985074                         0           0    0
##      0.806600378227794                         0           0    0
##      0.867455094638368                         0           0    0
##      0.897003448844096                         0           0    0
## 
## , , OTT_Time = 1.44460470085726, Snapchat_Time = 0.153472222222222, Instagram_Time = 0.138888888888889
## 
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.125 0.142361111111111 0.152777777777778
##      0.000000000123720820519974     0                 0                 0
##      0.0000000142143709248919       0                 0                 0
##      0.0000000203570784591136       0                 0                 0
##      0.0000000942663046181582       0                 0                 0
##      0.0381424863643358             0                 0                 0
##      0.0395235614826762             0                 0                 0
##      0.0398504564629362             0                 0                 0
##      0.0449831541922517             0                 0                 0
##      0.150208567676068              0                 0                 0
##      0.291704657263826              0                 0                 0
##      0.31263158525612               0                 0                 0
##      0.313581394222809              0                 0                 0
##      0.399450114450523              0                 0                 0
##      0.419739887455571              0                 0                 0
##      0.425358901761228              0                 0                 0
##      0.594035429893685              0                 0                 0
##      0.671638488556335              0                 0                 0
##      0.688092298985074              0                 0                 0
##      0.806600378227794              0                 0                 0
##      0.867455094638368              0                 0                 0
##      0.897003448844096              0                 0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.174305555555556 0.208333333333333
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.220833333333333 0.25 0.270833333333333
##      0.000000000123720820519974                 0    0                 0
##      0.0000000142143709248919                   0    0                 0
##      0.0000000203570784591136                   0    0                 0
##      0.0000000942663046181582                   0    0                 0
##      0.0381424863643358                         0    0                 0
##      0.0395235614826762                         0    0                 0
##      0.0398504564629362                         0    0                 0
##      0.0449831541922517                         0    0                 0
##      0.150208567676068                          0    0                 0
##      0.291704657263826                          0    0                 0
##      0.31263158525612                           0    0                 0
##      0.313581394222809                          0    0                 0
##      0.399450114450523                          0    0                 0
##      0.419739887455571                          0    0                 0
##      0.425358901761228                          0    0                 0
##      0.594035429893685                          0    0                 0
##      0.671638488556335                          0    0                 0
##      0.688092298985074                          0    0                 0
##      0.806600378227794                          0    0                 0
##      0.867455094638368                          0    0                 0
##      0.897003448844096                          0    0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.289583333333333 0.371527777777778
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.409722222222222 0.416666666666667 0.5 0.55625
##      0.000000000123720820519974                 0                 0   0       0
##      0.0000000142143709248919                   0                 0   0       0
##      0.0000000203570784591136                   0                 0   0       0
##      0.0000000942663046181582                   0                 0   0       0
##      0.0381424863643358                         0                 0   0       0
##      0.0395235614826762                         0                 0   0       0
##      0.0398504564629362                         0                 0   0       0
##      0.0449831541922517                         0                 0   0       0
##      0.150208567676068                          0                 0   0       0
##      0.291704657263826                          0                 0   0       0
##      0.31263158525612                           0                 0   0       0
##      0.313581394222809                          0                 0   0       0
##      0.399450114450523                          0                 0   0       0
##      0.419739887455571                          0                 0   0       0
##      0.425358901761228                          0                 0   0       0
##      0.594035429893685                          0                 0   0       0
##      0.671638488556335                          0                 0   0       0
##      0.688092298985074                          0                 0   0       0
##      0.806600378227794                          0                 0   0       0
##      0.867455094638368                          0                 0   0       0
##      0.897003448844096                          0                 0   0       0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.639583333333333 0.907785087701754 1
##      0.000000000123720820519974                 0                 0 0
##      0.0000000142143709248919                   0                 0 0
##      0.0000000203570784591136                   0                 0 0
##      0.0000000942663046181582                   0                 0 0
##      0.0381424863643358                         0                 0 0
##      0.0395235614826762                         0                 0 0
##      0.0398504564629362                         0                 0 0
##      0.0449831541922517                         0                 0 0
##      0.150208567676068                          0                 0 0
##      0.291704657263826                          0                 0 0
##      0.31263158525612                           0                 0 0
##      0.313581394222809                          0                 0 0
##      0.399450114450523                          0                 0 0
##      0.419739887455571                          0                 0 0
##      0.425358901761228                          0                 0 0
##      0.594035429893685                          0                 0 0
##      0.671638488556335                          0                 0 0
##      0.688092298985074                          0                 0 0
##      0.806600378227794                          0                 0 0
##      0.867455094638368                          0                 0 0
##      0.897003448844096                          0                 0 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 1.34930555555556 4.020833333 6.15
##      0.000000000123720820519974                0           0    0
##      0.0000000142143709248919                  0           0    0
##      0.0000000203570784591136                  0           0    0
##      0.0000000942663046181582                  0           0    0
##      0.0381424863643358                        0           0    0
##      0.0395235614826762                        0           0    0
##      0.0398504564629362                        0           0    0
##      0.0449831541922517                        0           0    0
##      0.150208567676068                         0           0    0
##      0.291704657263826                         0           0    0
##      0.31263158525612                          0           0    0
##      0.313581394222809                         0           0    0
##      0.399450114450523                         0           0    0
##      0.419739887455571                         0           0    0
##      0.425358901761228                         0           0    0
##      0.594035429893685                         0           0    0
##      0.671638488556335                         0           0    0
##      0.688092298985074                         0           0    0
##      0.806600378227794                         0           0    0
##      0.867455094638368                         0           0    0
##      0.897003448844096                         0           0    0
## 
## , , OTT_Time = 3, Snapchat_Time = 0.153472222222222, Instagram_Time = 0.138888888888889
## 
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.125 0.142361111111111 0.152777777777778
##      0.000000000123720820519974     0                 0                 0
##      0.0000000142143709248919       0                 0                 0
##      0.0000000203570784591136       0                 0                 0
##      0.0000000942663046181582       0                 0                 0
##      0.0381424863643358             0                 0                 0
##      0.0395235614826762             0                 0                 0
##      0.0398504564629362             0                 0                 0
##      0.0449831541922517             0                 0                 0
##      0.150208567676068              0                 0                 0
##      0.291704657263826              0                 0                 0
##      0.31263158525612               0                 0                 0
##      0.313581394222809              0                 0                 0
##      0.399450114450523              0                 0                 0
##      0.419739887455571              0                 0                 0
##      0.425358901761228              0                 0                 0
##      0.594035429893685              0                 0                 0
##      0.671638488556335              0                 0                 0
##      0.688092298985074              0                 0                 0
##      0.806600378227794              0                 0                 0
##      0.867455094638368              0                 0                 0
##      0.897003448844096              0                 0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.174305555555556 0.208333333333333
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.220833333333333 0.25 0.270833333333333
##      0.000000000123720820519974                 0    0                 0
##      0.0000000142143709248919                   0    0                 0
##      0.0000000203570784591136                   0    0                 0
##      0.0000000942663046181582                   0    0                 0
##      0.0381424863643358                         0    0                 0
##      0.0395235614826762                         0    0                 0
##      0.0398504564629362                         0    0                 0
##      0.0449831541922517                         0    0                 0
##      0.150208567676068                          0    0                 0
##      0.291704657263826                          0    0                 0
##      0.31263158525612                           0    0                 0
##      0.313581394222809                          0    0                 0
##      0.399450114450523                          0    0                 0
##      0.419739887455571                          0    0                 0
##      0.425358901761228                          0    0                 0
##      0.594035429893685                          0    0                 0
##      0.671638488556335                          0    0                 0
##      0.688092298985074                          0    0                 0
##      0.806600378227794                          0    0                 0
##      0.867455094638368                          0    0                 0
##      0.897003448844096                          0    0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.289583333333333 0.371527777777778
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.409722222222222 0.416666666666667 0.5 0.55625
##      0.000000000123720820519974                 0                 0   0       0
##      0.0000000142143709248919                   0                 0   0       0
##      0.0000000203570784591136                   0                 0   0       0
##      0.0000000942663046181582                   0                 0   0       0
##      0.0381424863643358                         0                 0   0       0
##      0.0395235614826762                         0                 0   0       0
##      0.0398504564629362                         0                 0   0       0
##      0.0449831541922517                         0                 0   0       0
##      0.150208567676068                          0                 0   0       0
##      0.291704657263826                          0                 0   0       0
##      0.31263158525612                           0                 0   0       0
##      0.313581394222809                          0                 0   0       0
##      0.399450114450523                          0                 0   0       0
##      0.419739887455571                          0                 0   0       0
##      0.425358901761228                          0                 0   0       0
##      0.594035429893685                          0                 0   0       0
##      0.671638488556335                          0                 0   0       0
##      0.688092298985074                          0                 0   0       0
##      0.806600378227794                          0                 0   0       0
##      0.867455094638368                          0                 0   0       0
##      0.897003448844096                          0                 0   0       0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.639583333333333 0.907785087701754 1
##      0.000000000123720820519974                 0                 0 0
##      0.0000000142143709248919                   0                 0 0
##      0.0000000203570784591136                   0                 0 0
##      0.0000000942663046181582                   0                 0 0
##      0.0381424863643358                         0                 0 0
##      0.0395235614826762                         0                 0 0
##      0.0398504564629362                         0                 0 0
##      0.0449831541922517                         0                 0 0
##      0.150208567676068                          0                 0 0
##      0.291704657263826                          0                 0 0
##      0.31263158525612                           0                 0 0
##      0.313581394222809                          0                 0 0
##      0.399450114450523                          0                 0 0
##      0.419739887455571                          0                 0 0
##      0.425358901761228                          0                 0 0
##      0.594035429893685                          0                 0 0
##      0.671638488556335                          0                 0 0
##      0.688092298985074                          0                 0 0
##      0.806600378227794                          0                 0 0
##      0.867455094638368                          0                 0 0
##      0.897003448844096                          0                 0 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 1.34930555555556 4.020833333 6.15
##      0.000000000123720820519974                0           0    0
##      0.0000000142143709248919                  0           0    0
##      0.0000000203570784591136                  0           0    0
##      0.0000000942663046181582                  0           0    0
##      0.0381424863643358                        0           0    0
##      0.0395235614826762                        0           0    0
##      0.0398504564629362                        0           0    0
##      0.0449831541922517                        0           0    0
##      0.150208567676068                         0           0    0
##      0.291704657263826                         0           0    0
##      0.31263158525612                          0           0    0
##      0.313581394222809                         0           0    0
##      0.399450114450523                         0           0    0
##      0.419739887455571                         0           0    0
##      0.425358901761228                         0           0    0
##      0.594035429893685                         0           0    0
##      0.671638488556335                         0           0    0
##      0.688092298985074                         0           0    0
##      0.806600378227794                         0           0    0
##      0.867455094638368                         0           0    0
##      0.897003448844096                         0           0    0
## 
## , , OTT_Time = 14.5, Snapchat_Time = 0.153472222222222, Instagram_Time = 0.138888888888889
## 
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.125 0.142361111111111 0.152777777777778
##      0.000000000123720820519974     0                 0                 0
##      0.0000000142143709248919       0                 0                 0
##      0.0000000203570784591136       0                 0                 0
##      0.0000000942663046181582       0                 0                 0
##      0.0381424863643358             0                 0                 0
##      0.0395235614826762             0                 0                 0
##      0.0398504564629362             0                 0                 0
##      0.0449831541922517             0                 0                 0
##      0.150208567676068              0                 0                 0
##      0.291704657263826              0                 0                 0
##      0.31263158525612               0                 0                 0
##      0.313581394222809              0                 0                 0
##      0.399450114450523              0                 0                 0
##      0.419739887455571              0                 0                 0
##      0.425358901761228              0                 0                 0
##      0.594035429893685              0                 0                 0
##      0.671638488556335              0                 0                 0
##      0.688092298985074              0                 0                 0
##      0.806600378227794              0                 0                 0
##      0.867455094638368              0                 0                 0
##      0.897003448844096              0                 0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.174305555555556 0.208333333333333
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.220833333333333 0.25 0.270833333333333
##      0.000000000123720820519974                 0    0                 0
##      0.0000000142143709248919                   0    0                 0
##      0.0000000203570784591136                   0    0                 0
##      0.0000000942663046181582                   0    0                 0
##      0.0381424863643358                         0    0                 0
##      0.0395235614826762                         0    0                 0
##      0.0398504564629362                         0    0                 0
##      0.0449831541922517                         0    0                 0
##      0.150208567676068                          0    0                 0
##      0.291704657263826                          0    0                 0
##      0.31263158525612                           0    0                 0
##      0.313581394222809                          0    0                 0
##      0.399450114450523                          0    0                 0
##      0.419739887455571                          0    0                 0
##      0.425358901761228                          0    0                 0
##      0.594035429893685                          0    0                 0
##      0.671638488556335                          0    0                 0
##      0.688092298985074                          0    0                 0
##      0.806600378227794                          0    0                 0
##      0.867455094638368                          0    0                 0
##      0.897003448844096                          0    0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.289583333333333 0.371527777777778
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.409722222222222 0.416666666666667 0.5 0.55625
##      0.000000000123720820519974                 0                 0   0       0
##      0.0000000142143709248919                   0                 0   0       0
##      0.0000000203570784591136                   0                 0   0       0
##      0.0000000942663046181582                   0                 0   0       0
##      0.0381424863643358                         0                 0   0       0
##      0.0395235614826762                         0                 0   0       0
##      0.0398504564629362                         0                 0   0       0
##      0.0449831541922517                         0                 0   0       0
##      0.150208567676068                          0                 0   0       0
##      0.291704657263826                          0                 0   0       0
##      0.31263158525612                           0                 0   0       0
##      0.313581394222809                          0                 0   0       0
##      0.399450114450523                          0                 0   0       0
##      0.419739887455571                          0                 0   0       0
##      0.425358901761228                          0                 0   0       0
##      0.594035429893685                          0                 0   0       0
##      0.671638488556335                          0                 0   0       0
##      0.688092298985074                          0                 0   0       0
##      0.806600378227794                          0                 0   0       0
##      0.867455094638368                          0                 0   0       0
##      0.897003448844096                          0                 0   0       0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.639583333333333 0.907785087701754 1
##      0.000000000123720820519974                 0                 0 0
##      0.0000000142143709248919                   0                 0 0
##      0.0000000203570784591136                   0                 0 0
##      0.0000000942663046181582                   0                 0 0
##      0.0381424863643358                         0                 0 0
##      0.0395235614826762                         0                 0 0
##      0.0398504564629362                         0                 0 0
##      0.0449831541922517                         0                 0 0
##      0.150208567676068                          0                 0 0
##      0.291704657263826                          0                 0 0
##      0.31263158525612                           0                 0 0
##      0.313581394222809                          0                 0 0
##      0.399450114450523                          0                 0 0
##      0.419739887455571                          0                 0 0
##      0.425358901761228                          0                 0 0
##      0.594035429893685                          0                 0 0
##      0.671638488556335                          0                 0 0
##      0.688092298985074                          0                 0 0
##      0.806600378227794                          0                 0 0
##      0.867455094638368                          0                 0 0
##      0.897003448844096                          0                 0 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 1.34930555555556 4.020833333 6.15
##      0.000000000123720820519974                0           0    0
##      0.0000000142143709248919                  0           0    0
##      0.0000000203570784591136                  0           0    0
##      0.0000000942663046181582                  0           0    0
##      0.0381424863643358                        0           0    0
##      0.0395235614826762                        0           0    0
##      0.0398504564629362                        0           0    0
##      0.0449831541922517                        0           0    0
##      0.150208567676068                         0           0    0
##      0.291704657263826                         0           0    0
##      0.31263158525612                          0           0    0
##      0.313581394222809                         0           0    0
##      0.399450114450523                         0           0    0
##      0.419739887455571                         0           0    0
##      0.425358901761228                         0           0    0
##      0.594035429893685                         0           0    0
##      0.671638488556335                         0           0    0
##      0.688092298985074                         0           0    0
##      0.806600378227794                         0           0    0
##      0.867455094638368                         0           0    0
##      0.897003448844096                         0           0    0
## 
## , , OTT_Time = 0, Snapchat_Time = 0.304861111111111, Instagram_Time = 0.138888888888889
## 
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.125 0.142361111111111 0.152777777777778
##      0.000000000123720820519974     0                 0                 0
##      0.0000000142143709248919       0                 0                 0
##      0.0000000203570784591136       0                 0                 0
##      0.0000000942663046181582       0                 0                 0
##      0.0381424863643358             0                 0                 0
##      0.0395235614826762             0                 0                 0
##      0.0398504564629362             0                 0                 0
##      0.0449831541922517             0                 0                 0
##      0.150208567676068              0                 0                 0
##      0.291704657263826              0                 0                 0
##      0.31263158525612               0                 0                 0
##      0.313581394222809              0                 0                 0
##      0.399450114450523              0                 0                 0
##      0.419739887455571              0                 0                 0
##      0.425358901761228              0                 0                 0
##      0.594035429893685              0                 0                 0
##      0.671638488556335              0                 0                 0
##      0.688092298985074              0                 0                 0
##      0.806600378227794              0                 0                 0
##      0.867455094638368              0                 0                 0
##      0.897003448844096              0                 0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.174305555555556 0.208333333333333
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.220833333333333 0.25 0.270833333333333
##      0.000000000123720820519974                 0    0                 0
##      0.0000000142143709248919                   0    0                 0
##      0.0000000203570784591136                   0    0                 0
##      0.0000000942663046181582                   0    0                 0
##      0.0381424863643358                         0    0                 0
##      0.0395235614826762                         0    0                 0
##      0.0398504564629362                         0    0                 0
##      0.0449831541922517                         0    0                 0
##      0.150208567676068                          0    0                 0
##      0.291704657263826                          0    0                 0
##      0.31263158525612                           0    0                 0
##      0.313581394222809                          0    0                 0
##      0.399450114450523                          0    0                 0
##      0.419739887455571                          0    0                 0
##      0.425358901761228                          0    0                 0
##      0.594035429893685                          0    0                 0
##      0.671638488556335                          0    0                 0
##      0.688092298985074                          0    0                 0
##      0.806600378227794                          0    0                 0
##      0.867455094638368                          0    0                 0
##      0.897003448844096                          0    0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.289583333333333 0.371527777777778
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.409722222222222 0.416666666666667 0.5 0.55625
##      0.000000000123720820519974                 0                 0   0       0
##      0.0000000142143709248919                   0                 0   0       0
##      0.0000000203570784591136                   0                 0   0       0
##      0.0000000942663046181582                   0                 0   0       0
##      0.0381424863643358                         0                 0   0       0
##      0.0395235614826762                         0                 0   0       0
##      0.0398504564629362                         0                 0   0       0
##      0.0449831541922517                         0                 0   0       0
##      0.150208567676068                          0                 0   0       0
##      0.291704657263826                          0                 0   0       0
##      0.31263158525612                           0                 0   0       0
##      0.313581394222809                          0                 0   0       0
##      0.399450114450523                          0                 0   0       0
##      0.419739887455571                          0                 0   0       0
##      0.425358901761228                          0                 0   0       0
##      0.594035429893685                          0                 0   0       0
##      0.671638488556335                          0                 0   0       0
##      0.688092298985074                          0                 0   0       0
##      0.806600378227794                          0                 0   0       0
##      0.867455094638368                          0                 0   0       0
##      0.897003448844096                          0                 0   0       0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.639583333333333 0.907785087701754 1
##      0.000000000123720820519974                 0                 0 0
##      0.0000000142143709248919                   0                 0 0
##      0.0000000203570784591136                   0                 0 0
##      0.0000000942663046181582                   0                 0 0
##      0.0381424863643358                         0                 0 0
##      0.0395235614826762                         0                 0 0
##      0.0398504564629362                         0                 0 0
##      0.0449831541922517                         0                 0 0
##      0.150208567676068                          0                 0 0
##      0.291704657263826                          0                 0 0
##      0.31263158525612                           0                 0 0
##      0.313581394222809                          0                 0 0
##      0.399450114450523                          0                 0 0
##      0.419739887455571                          0                 0 0
##      0.425358901761228                          0                 0 0
##      0.594035429893685                          0                 0 0
##      0.671638488556335                          0                 0 0
##      0.688092298985074                          0                 0 0
##      0.806600378227794                          0                 0 0
##      0.867455094638368                          0                 0 0
##      0.897003448844096                          0                 0 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 1.34930555555556 4.020833333 6.15
##      0.000000000123720820519974                0           0    0
##      0.0000000142143709248919                  0           0    0
##      0.0000000203570784591136                  0           0    0
##      0.0000000942663046181582                  0           0    0
##      0.0381424863643358                        0           0    0
##      0.0395235614826762                        0           0    0
##      0.0398504564629362                        0           0    0
##      0.0449831541922517                        0           0    0
##      0.150208567676068                         0           0    0
##      0.291704657263826                         0           0    0
##      0.31263158525612                          0           0    0
##      0.313581394222809                         0           0    0
##      0.399450114450523                         0           0    0
##      0.419739887455571                         0           0    0
##      0.425358901761228                         0           0    0
##      0.594035429893685                         0           0    0
##      0.671638488556335                         0           0    0
##      0.688092298985074                         0           0    0
##      0.806600378227794                         0           0    0
##      0.867455094638368                         0           0    0
##      0.897003448844096                         0           0    0
## 
## , , OTT_Time = 0.102777777777778, Snapchat_Time = 0.304861111111111, Instagram_Time = 0.138888888888889
## 
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.125 0.142361111111111 0.152777777777778
##      0.000000000123720820519974     0                 0                 0
##      0.0000000142143709248919       0                 0                 0
##      0.0000000203570784591136       0                 0                 0
##      0.0000000942663046181582       0                 0                 0
##      0.0381424863643358             0                 0                 0
##      0.0395235614826762             0                 0                 0
##      0.0398504564629362             0                 0                 0
##      0.0449831541922517             0                 0                 0
##      0.150208567676068              0                 0                 0
##      0.291704657263826              0                 0                 0
##      0.31263158525612               0                 0                 0
##      0.313581394222809              0                 0                 0
##      0.399450114450523              0                 0                 0
##      0.419739887455571              0                 0                 0
##      0.425358901761228              0                 0                 0
##      0.594035429893685              0                 0                 0
##      0.671638488556335              0                 0                 0
##      0.688092298985074              0                 0                 0
##      0.806600378227794              0                 0                 0
##      0.867455094638368              0                 0                 0
##      0.897003448844096              0                 0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.174305555555556 0.208333333333333
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.220833333333333 0.25 0.270833333333333
##      0.000000000123720820519974                 0    0                 0
##      0.0000000142143709248919                   0    0                 0
##      0.0000000203570784591136                   0    0                 0
##      0.0000000942663046181582                   0    0                 0
##      0.0381424863643358                         0    0                 0
##      0.0395235614826762                         0    0                 0
##      0.0398504564629362                         0    0                 0
##      0.0449831541922517                         0    0                 0
##      0.150208567676068                          0    0                 0
##      0.291704657263826                          0    0                 0
##      0.31263158525612                           0    0                 0
##      0.313581394222809                          0    0                 0
##      0.399450114450523                          0    0                 0
##      0.419739887455571                          0    0                 0
##      0.425358901761228                          0    0                 0
##      0.594035429893685                          0    0                 0
##      0.671638488556335                          0    0                 0
##      0.688092298985074                          0    0                 0
##      0.806600378227794                          0    0                 0
##      0.867455094638368                          0    0                 0
##      0.897003448844096                          0    0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.289583333333333 0.371527777777778
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.409722222222222 0.416666666666667 0.5 0.55625
##      0.000000000123720820519974                 0                 0   0       0
##      0.0000000142143709248919                   0                 0   0       0
##      0.0000000203570784591136                   0                 0   0       0
##      0.0000000942663046181582                   0                 0   0       0
##      0.0381424863643358                         0                 0   0       0
##      0.0395235614826762                         0                 0   0       0
##      0.0398504564629362                         0                 0   0       0
##      0.0449831541922517                         0                 0   0       0
##      0.150208567676068                          0                 0   0       0
##      0.291704657263826                          0                 0   0       0
##      0.31263158525612                           0                 0   0       0
##      0.313581394222809                          0                 0   0       0
##      0.399450114450523                          0                 0   0       0
##      0.419739887455571                          0                 0   0       0
##      0.425358901761228                          0                 0   0       0
##      0.594035429893685                          0                 0   0       0
##      0.671638488556335                          0                 0   0       0
##      0.688092298985074                          0                 0   0       0
##      0.806600378227794                          0                 0   0       0
##      0.867455094638368                          0                 0   0       0
##      0.897003448844096                          0                 0   0       0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.639583333333333 0.907785087701754 1
##      0.000000000123720820519974                 0                 0 0
##      0.0000000142143709248919                   0                 0 0
##      0.0000000203570784591136                   0                 0 0
##      0.0000000942663046181582                   0                 0 0
##      0.0381424863643358                         0                 0 0
##      0.0395235614826762                         0                 0 0
##      0.0398504564629362                         0                 0 0
##      0.0449831541922517                         0                 0 0
##      0.150208567676068                          0                 0 0
##      0.291704657263826                          0                 0 0
##      0.31263158525612                           0                 0 0
##      0.313581394222809                          0                 0 0
##      0.399450114450523                          0                 0 0
##      0.419739887455571                          0                 0 0
##      0.425358901761228                          0                 0 0
##      0.594035429893685                          0                 0 0
##      0.671638488556335                          0                 0 0
##      0.688092298985074                          0                 0 0
##      0.806600378227794                          0                 0 0
##      0.867455094638368                          0                 0 0
##      0.897003448844096                          0                 0 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 1.34930555555556 4.020833333 6.15
##      0.000000000123720820519974                0           0    0
##      0.0000000142143709248919                  0           0    0
##      0.0000000203570784591136                  0           0    0
##      0.0000000942663046181582                  0           0    0
##      0.0381424863643358                        0           0    0
##      0.0395235614826762                        0           0    0
##      0.0398504564629362                        0           0    0
##      0.0449831541922517                        0           0    0
##      0.150208567676068                         0           0    0
##      0.291704657263826                         0           0    0
##      0.31263158525612                          0           0    0
##      0.313581394222809                         0           0    0
##      0.399450114450523                         0           0    0
##      0.419739887455571                         0           0    0
##      0.425358901761228                         0           0    0
##      0.594035429893685                         0           0    0
##      0.671638488556335                         0           0    0
##      0.688092298985074                         0           0    0
##      0.806600378227794                         0           0    0
##      0.867455094638368                         0           0    0
##      0.897003448844096                         0           0    0
## 
## , , OTT_Time = 0.125, Snapchat_Time = 0.304861111111111, Instagram_Time = 0.138888888888889
## 
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.125 0.142361111111111 0.152777777777778
##      0.000000000123720820519974     0                 0                 0
##      0.0000000142143709248919       0                 0                 0
##      0.0000000203570784591136       0                 0                 0
##      0.0000000942663046181582       0                 0                 0
##      0.0381424863643358             0                 0                 0
##      0.0395235614826762             0                 0                 0
##      0.0398504564629362             0                 0                 0
##      0.0449831541922517             0                 0                 0
##      0.150208567676068              0                 0                 0
##      0.291704657263826              0                 0                 0
##      0.31263158525612               0                 0                 0
##      0.313581394222809              0                 0                 0
##      0.399450114450523              0                 0                 0
##      0.419739887455571              0                 0                 0
##      0.425358901761228              0                 0                 0
##      0.594035429893685              0                 0                 0
##      0.671638488556335              0                 0                 0
##      0.688092298985074              0                 0                 0
##      0.806600378227794              0                 0                 0
##      0.867455094638368              0                 0                 0
##      0.897003448844096              0                 0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.174305555555556 0.208333333333333
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.220833333333333 0.25 0.270833333333333
##      0.000000000123720820519974                 0    0                 0
##      0.0000000142143709248919                   0    0                 0
##      0.0000000203570784591136                   0    0                 0
##      0.0000000942663046181582                   0    0                 0
##      0.0381424863643358                         0    0                 0
##      0.0395235614826762                         0    0                 0
##      0.0398504564629362                         0    0                 0
##      0.0449831541922517                         0    0                 0
##      0.150208567676068                          0    0                 0
##      0.291704657263826                          0    0                 0
##      0.31263158525612                           0    0                 0
##      0.313581394222809                          0    0                 0
##      0.399450114450523                          0    0                 0
##      0.419739887455571                          0    0                 0
##      0.425358901761228                          0    0                 0
##      0.594035429893685                          0    0                 0
##      0.671638488556335                          0    0                 0
##      0.688092298985074                          0    0                 0
##      0.806600378227794                          0    0                 0
##      0.867455094638368                          0    0                 0
##      0.897003448844096                          0    0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.289583333333333 0.371527777777778
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.409722222222222 0.416666666666667 0.5 0.55625
##      0.000000000123720820519974                 0                 0   0       0
##      0.0000000142143709248919                   0                 0   0       0
##      0.0000000203570784591136                   0                 0   0       0
##      0.0000000942663046181582                   0                 0   0       0
##      0.0381424863643358                         0                 0   0       0
##      0.0395235614826762                         0                 0   0       0
##      0.0398504564629362                         0                 0   0       0
##      0.0449831541922517                         0                 0   0       0
##      0.150208567676068                          0                 0   0       0
##      0.291704657263826                          0                 0   0       0
##      0.31263158525612                           0                 0   0       0
##      0.313581394222809                          0                 0   0       0
##      0.399450114450523                          0                 0   0       0
##      0.419739887455571                          0                 0   0       0
##      0.425358901761228                          0                 0   0       0
##      0.594035429893685                          0                 0   0       0
##      0.671638488556335                          0                 0   0       0
##      0.688092298985074                          0                 0   0       0
##      0.806600378227794                          0                 0   0       0
##      0.867455094638368                          0                 0   0       0
##      0.897003448844096                          0                 0   0       0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.639583333333333 0.907785087701754 1
##      0.000000000123720820519974                 0                 0 0
##      0.0000000142143709248919                   0                 0 0
##      0.0000000203570784591136                   0                 0 0
##      0.0000000942663046181582                   0                 0 0
##      0.0381424863643358                         0                 0 0
##      0.0395235614826762                         0                 0 0
##      0.0398504564629362                         0                 0 0
##      0.0449831541922517                         0                 0 0
##      0.150208567676068                          0                 0 0
##      0.291704657263826                          0                 0 0
##      0.31263158525612                           0                 0 0
##      0.313581394222809                          0                 0 0
##      0.399450114450523                          0                 0 0
##      0.419739887455571                          0                 0 0
##      0.425358901761228                          0                 0 0
##      0.594035429893685                          0                 0 0
##      0.671638488556335                          0                 0 0
##      0.688092298985074                          0                 0 0
##      0.806600378227794                          0                 0 0
##      0.867455094638368                          0                 0 0
##      0.897003448844096                          0                 0 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 1.34930555555556 4.020833333 6.15
##      0.000000000123720820519974                0           0    0
##      0.0000000142143709248919                  0           0    0
##      0.0000000203570784591136                  0           0    0
##      0.0000000942663046181582                  0           0    0
##      0.0381424863643358                        0           0    0
##      0.0395235614826762                        0           0    0
##      0.0398504564629362                        0           0    0
##      0.0449831541922517                        0           0    0
##      0.150208567676068                         0           0    0
##      0.291704657263826                         0           0    0
##      0.31263158525612                          0           0    0
##      0.313581394222809                         0           0    0
##      0.399450114450523                         0           0    0
##      0.419739887455571                         0           0    0
##      0.425358901761228                         0           0    0
##      0.594035429893685                         0           0    0
##      0.671638488556335                         0           0    0
##      0.688092298985074                         0           0    0
##      0.806600378227794                         0           0    0
##      0.867455094638368                         0           0    0
##      0.897003448844096                         0           0    0
## 
## , , OTT_Time = 0.416666666666667, Snapchat_Time = 0.304861111111111, Instagram_Time = 0.138888888888889
## 
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.125 0.142361111111111 0.152777777777778
##      0.000000000123720820519974     0                 0                 0
##      0.0000000142143709248919       0                 0                 0
##      0.0000000203570784591136       0                 0                 0
##      0.0000000942663046181582       0                 0                 0
##      0.0381424863643358             0                 0                 0
##      0.0395235614826762             0                 0                 0
##      0.0398504564629362             0                 0                 0
##      0.0449831541922517             0                 0                 0
##      0.150208567676068              0                 0                 0
##      0.291704657263826              0                 0                 0
##      0.31263158525612               0                 0                 0
##      0.313581394222809              0                 0                 0
##      0.399450114450523              0                 0                 0
##      0.419739887455571              0                 0                 0
##      0.425358901761228              0                 0                 0
##      0.594035429893685              0                 0                 0
##      0.671638488556335              0                 0                 0
##      0.688092298985074              0                 0                 0
##      0.806600378227794              0                 0                 0
##      0.867455094638368              0                 0                 0
##      0.897003448844096              0                 0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.174305555555556 0.208333333333333
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.220833333333333 0.25 0.270833333333333
##      0.000000000123720820519974                 0    0                 0
##      0.0000000142143709248919                   0    0                 0
##      0.0000000203570784591136                   0    0                 0
##      0.0000000942663046181582                   0    0                 0
##      0.0381424863643358                         0    0                 0
##      0.0395235614826762                         0    0                 0
##      0.0398504564629362                         0    0                 0
##      0.0449831541922517                         0    0                 0
##      0.150208567676068                          0    0                 0
##      0.291704657263826                          0    0                 0
##      0.31263158525612                           0    0                 0
##      0.313581394222809                          0    0                 0
##      0.399450114450523                          0    0                 0
##      0.419739887455571                          0    0                 0
##      0.425358901761228                          0    0                 0
##      0.594035429893685                          0    0                 0
##      0.671638488556335                          0    0                 0
##      0.688092298985074                          0    0                 0
##      0.806600378227794                          0    0                 0
##      0.867455094638368                          0    0                 0
##      0.897003448844096                          0    0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.289583333333333 0.371527777777778
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.409722222222222 0.416666666666667 0.5 0.55625
##      0.000000000123720820519974                 0                 0   0       0
##      0.0000000142143709248919                   0                 0   0       0
##      0.0000000203570784591136                   0                 0   0       0
##      0.0000000942663046181582                   0                 0   0       0
##      0.0381424863643358                         0                 0   0       0
##      0.0395235614826762                         0                 0   0       0
##      0.0398504564629362                         0                 0   0       0
##      0.0449831541922517                         0                 0   0       0
##      0.150208567676068                          0                 0   0       0
##      0.291704657263826                          0                 0   0       0
##      0.31263158525612                           0                 0   0       0
##      0.313581394222809                          0                 0   0       0
##      0.399450114450523                          0                 0   0       0
##      0.419739887455571                          0                 0   0       0
##      0.425358901761228                          0                 0   0       0
##      0.594035429893685                          0                 0   0       0
##      0.671638488556335                          0                 0   0       0
##      0.688092298985074                          0                 0   0       0
##      0.806600378227794                          0                 0   0       0
##      0.867455094638368                          0                 0   0       0
##      0.897003448844096                          0                 0   0       0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.639583333333333 0.907785087701754 1
##      0.000000000123720820519974                 0                 0 0
##      0.0000000142143709248919                   0                 0 0
##      0.0000000203570784591136                   0                 0 0
##      0.0000000942663046181582                   0                 0 0
##      0.0381424863643358                         0                 0 0
##      0.0395235614826762                         0                 0 0
##      0.0398504564629362                         0                 0 0
##      0.0449831541922517                         0                 0 0
##      0.150208567676068                          0                 0 0
##      0.291704657263826                          0                 0 0
##      0.31263158525612                           0                 0 0
##      0.313581394222809                          0                 0 0
##      0.399450114450523                          0                 0 0
##      0.419739887455571                          0                 0 0
##      0.425358901761228                          0                 0 0
##      0.594035429893685                          0                 0 0
##      0.671638488556335                          0                 0 0
##      0.688092298985074                          0                 0 0
##      0.806600378227794                          0                 0 0
##      0.867455094638368                          0                 0 0
##      0.897003448844096                          0                 0 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 1.34930555555556 4.020833333 6.15
##      0.000000000123720820519974                0           0    0
##      0.0000000142143709248919                  0           0    0
##      0.0000000203570784591136                  0           0    0
##      0.0000000942663046181582                  0           0    0
##      0.0381424863643358                        0           0    0
##      0.0395235614826762                        0           0    0
##      0.0398504564629362                        0           0    0
##      0.0449831541922517                        0           0    0
##      0.150208567676068                         0           0    0
##      0.291704657263826                         0           0    0
##      0.31263158525612                          0           0    0
##      0.313581394222809                         0           0    0
##      0.399450114450523                         0           0    0
##      0.419739887455571                         0           0    0
##      0.425358901761228                         0           0    0
##      0.594035429893685                         0           0    0
##      0.671638488556335                         0           0    0
##      0.688092298985074                         0           0    0
##      0.806600378227794                         0           0    0
##      0.867455094638368                         0           0    0
##      0.897003448844096                         0           0    0
## 
## , , OTT_Time = 0.5104166667, Snapchat_Time = 0.304861111111111, Instagram_Time = 0.138888888888889
## 
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.125 0.142361111111111 0.152777777777778
##      0.000000000123720820519974     0                 0                 0
##      0.0000000142143709248919       0                 0                 0
##      0.0000000203570784591136       0                 0                 0
##      0.0000000942663046181582       0                 0                 0
##      0.0381424863643358             0                 0                 0
##      0.0395235614826762             0                 0                 0
##      0.0398504564629362             0                 0                 0
##      0.0449831541922517             0                 0                 0
##      0.150208567676068              0                 0                 0
##      0.291704657263826              0                 0                 0
##      0.31263158525612               0                 0                 0
##      0.313581394222809              0                 0                 0
##      0.399450114450523              0                 0                 0
##      0.419739887455571              0                 0                 0
##      0.425358901761228              0                 0                 0
##      0.594035429893685              0                 0                 0
##      0.671638488556335              0                 0                 0
##      0.688092298985074              0                 0                 0
##      0.806600378227794              0                 0                 0
##      0.867455094638368              0                 0                 0
##      0.897003448844096              0                 0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.174305555555556 0.208333333333333
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.220833333333333 0.25 0.270833333333333
##      0.000000000123720820519974                 0    0                 0
##      0.0000000142143709248919                   0    0                 0
##      0.0000000203570784591136                   0    0                 0
##      0.0000000942663046181582                   0    0                 0
##      0.0381424863643358                         0    0                 0
##      0.0395235614826762                         0    0                 0
##      0.0398504564629362                         0    0                 0
##      0.0449831541922517                         0    0                 0
##      0.150208567676068                          0    0                 0
##      0.291704657263826                          0    0                 0
##      0.31263158525612                           0    0                 0
##      0.313581394222809                          0    0                 0
##      0.399450114450523                          0    0                 0
##      0.419739887455571                          0    0                 0
##      0.425358901761228                          0    0                 0
##      0.594035429893685                          0    0                 0
##      0.671638488556335                          0    0                 0
##      0.688092298985074                          0    0                 0
##      0.806600378227794                          0    0                 0
##      0.867455094638368                          0    0                 0
##      0.897003448844096                          0    0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.289583333333333 0.371527777777778
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.409722222222222 0.416666666666667 0.5 0.55625
##      0.000000000123720820519974                 0                 0   0       0
##      0.0000000142143709248919                   0                 0   0       0
##      0.0000000203570784591136                   0                 0   0       0
##      0.0000000942663046181582                   0                 0   0       0
##      0.0381424863643358                         0                 0   0       0
##      0.0395235614826762                         0                 0   0       0
##      0.0398504564629362                         0                 0   0       0
##      0.0449831541922517                         0                 0   0       0
##      0.150208567676068                          0                 0   0       0
##      0.291704657263826                          0                 0   0       0
##      0.31263158525612                           0                 0   0       0
##      0.313581394222809                          0                 0   0       0
##      0.399450114450523                          0                 0   0       0
##      0.419739887455571                          0                 0   0       0
##      0.425358901761228                          0                 0   0       0
##      0.594035429893685                          0                 0   0       0
##      0.671638488556335                          0                 0   0       0
##      0.688092298985074                          0                 0   0       0
##      0.806600378227794                          0                 0   0       0
##      0.867455094638368                          0                 0   0       0
##      0.897003448844096                          0                 0   0       0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.639583333333333 0.907785087701754 1
##      0.000000000123720820519974                 0                 0 0
##      0.0000000142143709248919                   0                 0 0
##      0.0000000203570784591136                   0                 0 0
##      0.0000000942663046181582                   0                 0 0
##      0.0381424863643358                         0                 0 0
##      0.0395235614826762                         0                 0 0
##      0.0398504564629362                         0                 0 0
##      0.0449831541922517                         0                 0 0
##      0.150208567676068                          0                 0 0
##      0.291704657263826                          0                 0 0
##      0.31263158525612                           0                 0 0
##      0.313581394222809                          0                 0 0
##      0.399450114450523                          0                 0 0
##      0.419739887455571                          0                 0 0
##      0.425358901761228                          0                 0 0
##      0.594035429893685                          0                 0 0
##      0.671638488556335                          0                 0 0
##      0.688092298985074                          0                 0 0
##      0.806600378227794                          0                 0 0
##      0.867455094638368                          0                 0 0
##      0.897003448844096                          0                 0 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 1.34930555555556 4.020833333 6.15
##      0.000000000123720820519974                0           0    0
##      0.0000000142143709248919                  0           0    0
##      0.0000000203570784591136                  0           0    0
##      0.0000000942663046181582                  0           0    0
##      0.0381424863643358                        0           0    0
##      0.0395235614826762                        0           0    0
##      0.0398504564629362                        0           0    0
##      0.0449831541922517                        0           0    0
##      0.150208567676068                         0           0    0
##      0.291704657263826                         0           0    0
##      0.31263158525612                          0           0    0
##      0.313581394222809                         0           0    0
##      0.399450114450523                         0           0    0
##      0.419739887455571                         0           0    0
##      0.425358901761228                         0           0    0
##      0.594035429893685                         0           0    0
##      0.671638488556335                         0           0    0
##      0.688092298985074                         0           0    0
##      0.806600378227794                         0           0    0
##      0.867455094638368                         0           0    0
##      0.897003448844096                         0           0    0
## 
## , , OTT_Time = 1.44460470085726, Snapchat_Time = 0.304861111111111, Instagram_Time = 0.138888888888889
## 
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.125 0.142361111111111 0.152777777777778
##      0.000000000123720820519974     0                 0                 0
##      0.0000000142143709248919       0                 0                 0
##      0.0000000203570784591136       0                 0                 0
##      0.0000000942663046181582       0                 0                 0
##      0.0381424863643358             0                 0                 0
##      0.0395235614826762             0                 0                 0
##      0.0398504564629362             0                 0                 0
##      0.0449831541922517             0                 0                 0
##      0.150208567676068              0                 0                 0
##      0.291704657263826              0                 0                 0
##      0.31263158525612               0                 0                 0
##      0.313581394222809              0                 0                 0
##      0.399450114450523              0                 0                 0
##      0.419739887455571              0                 0                 0
##      0.425358901761228              0                 0                 0
##      0.594035429893685              0                 0                 0
##      0.671638488556335              0                 0                 0
##      0.688092298985074              0                 0                 0
##      0.806600378227794              0                 0                 0
##      0.867455094638368              0                 0                 0
##      0.897003448844096              0                 0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.174305555555556 0.208333333333333
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.220833333333333 0.25 0.270833333333333
##      0.000000000123720820519974                 0    0                 0
##      0.0000000142143709248919                   0    0                 0
##      0.0000000203570784591136                   0    0                 0
##      0.0000000942663046181582                   0    0                 0
##      0.0381424863643358                         0    0                 0
##      0.0395235614826762                         0    0                 0
##      0.0398504564629362                         0    0                 0
##      0.0449831541922517                         0    0                 0
##      0.150208567676068                          0    0                 0
##      0.291704657263826                          0    0                 0
##      0.31263158525612                           0    0                 0
##      0.313581394222809                          0    0                 0
##      0.399450114450523                          0    0                 0
##      0.419739887455571                          0    0                 0
##      0.425358901761228                          0    0                 0
##      0.594035429893685                          0    0                 0
##      0.671638488556335                          0    0                 0
##      0.688092298985074                          0    0                 0
##      0.806600378227794                          0    0                 0
##      0.867455094638368                          0    0                 0
##      0.897003448844096                          0    0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.289583333333333 0.371527777777778
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.409722222222222 0.416666666666667 0.5 0.55625
##      0.000000000123720820519974                 0                 0   0       0
##      0.0000000142143709248919                   0                 0   0       0
##      0.0000000203570784591136                   0                 0   0       0
##      0.0000000942663046181582                   0                 0   0       0
##      0.0381424863643358                         0                 0   0       0
##      0.0395235614826762                         0                 0   0       0
##      0.0398504564629362                         0                 0   0       0
##      0.0449831541922517                         0                 0   0       0
##      0.150208567676068                          0                 0   0       0
##      0.291704657263826                          0                 0   0       0
##      0.31263158525612                           0                 0   0       0
##      0.313581394222809                          0                 0   0       0
##      0.399450114450523                          0                 0   0       0
##      0.419739887455571                          0                 0   0       0
##      0.425358901761228                          0                 0   0       0
##      0.594035429893685                          0                 0   0       0
##      0.671638488556335                          0                 0   0       0
##      0.688092298985074                          0                 0   0       0
##      0.806600378227794                          0                 0   0       0
##      0.867455094638368                          0                 0   0       0
##      0.897003448844096                          0                 0   0       0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.639583333333333 0.907785087701754 1
##      0.000000000123720820519974                 0                 0 0
##      0.0000000142143709248919                   0                 0 0
##      0.0000000203570784591136                   0                 0 0
##      0.0000000942663046181582                   0                 0 0
##      0.0381424863643358                         0                 0 0
##      0.0395235614826762                         0                 0 0
##      0.0398504564629362                         0                 0 0
##      0.0449831541922517                         0                 0 0
##      0.150208567676068                          0                 0 0
##      0.291704657263826                          0                 0 0
##      0.31263158525612                           0                 0 0
##      0.313581394222809                          0                 0 0
##      0.399450114450523                          0                 0 0
##      0.419739887455571                          0                 0 0
##      0.425358901761228                          0                 0 0
##      0.594035429893685                          0                 0 0
##      0.671638488556335                          0                 0 0
##      0.688092298985074                          0                 0 0
##      0.806600378227794                          0                 0 0
##      0.867455094638368                          0                 0 0
##      0.897003448844096                          0                 0 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 1.34930555555556 4.020833333 6.15
##      0.000000000123720820519974                0           0    0
##      0.0000000142143709248919                  0           0    0
##      0.0000000203570784591136                  0           0    0
##      0.0000000942663046181582                  0           0    0
##      0.0381424863643358                        0           0    0
##      0.0395235614826762                        0           0    0
##      0.0398504564629362                        0           0    0
##      0.0449831541922517                        0           0    0
##      0.150208567676068                         0           0    0
##      0.291704657263826                         0           0    0
##      0.31263158525612                          0           0    0
##      0.313581394222809                         0           0    0
##      0.399450114450523                         0           0    0
##      0.419739887455571                         0           0    0
##      0.425358901761228                         0           0    0
##      0.594035429893685                         0           0    0
##      0.671638488556335                         0           0    0
##      0.688092298985074                         0           0    0
##      0.806600378227794                         0           0    0
##      0.867455094638368                         0           0    0
##      0.897003448844096                         0           0    0
## 
## , , OTT_Time = 3, Snapchat_Time = 0.304861111111111, Instagram_Time = 0.138888888888889
## 
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.125 0.142361111111111 0.152777777777778
##      0.000000000123720820519974     0                 0                 0
##      0.0000000142143709248919       0                 0                 0
##      0.0000000203570784591136       0                 0                 0
##      0.0000000942663046181582       0                 0                 0
##      0.0381424863643358             0                 0                 0
##      0.0395235614826762             0                 0                 0
##      0.0398504564629362             0                 0                 0
##      0.0449831541922517             0                 0                 0
##      0.150208567676068              0                 0                 0
##      0.291704657263826              0                 0                 0
##      0.31263158525612               0                 0                 0
##      0.313581394222809              0                 0                 0
##      0.399450114450523              0                 0                 0
##      0.419739887455571              0                 0                 0
##      0.425358901761228              0                 0                 0
##      0.594035429893685              0                 0                 0
##      0.671638488556335              0                 0                 0
##      0.688092298985074              0                 0                 0
##      0.806600378227794              0                 0                 0
##      0.867455094638368              0                 0                 0
##      0.897003448844096              0                 0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.174305555555556 0.208333333333333
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.220833333333333 0.25 0.270833333333333
##      0.000000000123720820519974                 0    0                 0
##      0.0000000142143709248919                   0    0                 0
##      0.0000000203570784591136                   0    0                 0
##      0.0000000942663046181582                   0    0                 0
##      0.0381424863643358                         0    0                 0
##      0.0395235614826762                         0    0                 0
##      0.0398504564629362                         0    0                 0
##      0.0449831541922517                         0    0                 0
##      0.150208567676068                          0    0                 0
##      0.291704657263826                          0    0                 0
##      0.31263158525612                           0    0                 0
##      0.313581394222809                          0    0                 0
##      0.399450114450523                          0    0                 0
##      0.419739887455571                          0    0                 0
##      0.425358901761228                          0    0                 0
##      0.594035429893685                          0    0                 0
##      0.671638488556335                          0    0                 0
##      0.688092298985074                          0    0                 0
##      0.806600378227794                          0    0                 0
##      0.867455094638368                          0    0                 0
##      0.897003448844096                          0    0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.289583333333333 0.371527777777778
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.409722222222222 0.416666666666667 0.5 0.55625
##      0.000000000123720820519974                 0                 0   0       0
##      0.0000000142143709248919                   0                 0   0       0
##      0.0000000203570784591136                   0                 0   0       0
##      0.0000000942663046181582                   0                 0   0       0
##      0.0381424863643358                         0                 0   0       0
##      0.0395235614826762                         0                 0   0       0
##      0.0398504564629362                         0                 0   0       0
##      0.0449831541922517                         0                 0   0       0
##      0.150208567676068                          0                 0   0       0
##      0.291704657263826                          0                 0   0       0
##      0.31263158525612                           0                 0   0       0
##      0.313581394222809                          0                 0   0       0
##      0.399450114450523                          0                 0   0       0
##      0.419739887455571                          0                 0   0       0
##      0.425358901761228                          0                 0   0       0
##      0.594035429893685                          0                 0   0       0
##      0.671638488556335                          0                 0   0       0
##      0.688092298985074                          0                 0   0       0
##      0.806600378227794                          0                 0   0       0
##      0.867455094638368                          0                 0   0       0
##      0.897003448844096                          0                 0   0       0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.639583333333333 0.907785087701754 1
##      0.000000000123720820519974                 0                 0 0
##      0.0000000142143709248919                   0                 0 0
##      0.0000000203570784591136                   0                 0 0
##      0.0000000942663046181582                   0                 0 0
##      0.0381424863643358                         0                 0 0
##      0.0395235614826762                         0                 0 0
##      0.0398504564629362                         0                 0 0
##      0.0449831541922517                         0                 0 0
##      0.150208567676068                          0                 0 0
##      0.291704657263826                          0                 0 0
##      0.31263158525612                           0                 0 0
##      0.313581394222809                          0                 0 0
##      0.399450114450523                          0                 0 0
##      0.419739887455571                          0                 0 0
##      0.425358901761228                          0                 0 0
##      0.594035429893685                          0                 0 0
##      0.671638488556335                          0                 0 0
##      0.688092298985074                          0                 0 0
##      0.806600378227794                          0                 0 0
##      0.867455094638368                          0                 0 0
##      0.897003448844096                          0                 0 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 1.34930555555556 4.020833333 6.15
##      0.000000000123720820519974                0           0    0
##      0.0000000142143709248919                  0           0    0
##      0.0000000203570784591136                  0           0    0
##      0.0000000942663046181582                  0           0    0
##      0.0381424863643358                        0           0    0
##      0.0395235614826762                        0           0    0
##      0.0398504564629362                        0           0    0
##      0.0449831541922517                        0           0    0
##      0.150208567676068                         0           0    0
##      0.291704657263826                         0           0    0
##      0.31263158525612                          0           0    0
##      0.313581394222809                         0           0    0
##      0.399450114450523                         0           0    0
##      0.419739887455571                         0           0    0
##      0.425358901761228                         0           0    0
##      0.594035429893685                         0           0    0
##      0.671638488556335                         0           0    0
##      0.688092298985074                         0           0    0
##      0.806600378227794                         0           0    0
##      0.867455094638368                         0           0    0
##      0.897003448844096                         0           0    0
## 
## , , OTT_Time = 14.5, Snapchat_Time = 0.304861111111111, Instagram_Time = 0.138888888888889
## 
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.125 0.142361111111111 0.152777777777778
##      0.000000000123720820519974     0                 0                 0
##      0.0000000142143709248919       0                 0                 0
##      0.0000000203570784591136       0                 0                 0
##      0.0000000942663046181582       0                 0                 0
##      0.0381424863643358             0                 0                 0
##      0.0395235614826762             0                 0                 0
##      0.0398504564629362             0                 0                 0
##      0.0449831541922517             0                 0                 0
##      0.150208567676068              0                 0                 0
##      0.291704657263826              0                 0                 0
##      0.31263158525612               0                 0                 0
##      0.313581394222809              0                 0                 0
##      0.399450114450523              0                 0                 0
##      0.419739887455571              0                 0                 0
##      0.425358901761228              0                 0                 0
##      0.594035429893685              0                 0                 0
##      0.671638488556335              0                 0                 0
##      0.688092298985074              0                 0                 0
##      0.806600378227794              0                 0                 0
##      0.867455094638368              0                 0                 0
##      0.897003448844096              0                 0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.174305555555556 0.208333333333333
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.220833333333333 0.25 0.270833333333333
##      0.000000000123720820519974                 0    0                 0
##      0.0000000142143709248919                   0    0                 0
##      0.0000000203570784591136                   0    0                 0
##      0.0000000942663046181582                   0    0                 0
##      0.0381424863643358                         0    0                 0
##      0.0395235614826762                         0    0                 0
##      0.0398504564629362                         0    0                 0
##      0.0449831541922517                         0    0                 0
##      0.150208567676068                          0    0                 0
##      0.291704657263826                          0    0                 0
##      0.31263158525612                           0    0                 0
##      0.313581394222809                          0    0                 0
##      0.399450114450523                          0    0                 0
##      0.419739887455571                          0    0                 0
##      0.425358901761228                          0    0                 0
##      0.594035429893685                          0    0                 0
##      0.671638488556335                          0    0                 0
##      0.688092298985074                          0    0                 0
##      0.806600378227794                          0    0                 0
##      0.867455094638368                          0    0                 0
##      0.897003448844096                          0    0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.289583333333333 0.371527777777778
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.409722222222222 0.416666666666667 0.5 0.55625
##      0.000000000123720820519974                 0                 0   0       0
##      0.0000000142143709248919                   0                 0   0       0
##      0.0000000203570784591136                   0                 0   0       0
##      0.0000000942663046181582                   0                 0   0       0
##      0.0381424863643358                         0                 0   0       0
##      0.0395235614826762                         0                 0   0       0
##      0.0398504564629362                         0                 0   0       0
##      0.0449831541922517                         0                 0   0       0
##      0.150208567676068                          0                 0   0       0
##      0.291704657263826                          0                 0   0       0
##      0.31263158525612                           0                 0   0       0
##      0.313581394222809                          0                 0   0       0
##      0.399450114450523                          0                 0   0       0
##      0.419739887455571                          0                 0   0       0
##      0.425358901761228                          0                 0   0       0
##      0.594035429893685                          0                 0   0       0
##      0.671638488556335                          0                 0   0       0
##      0.688092298985074                          0                 0   0       0
##      0.806600378227794                          0                 0   0       0
##      0.867455094638368                          0                 0   0       0
##      0.897003448844096                          0                 0   0       0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.639583333333333 0.907785087701754 1
##      0.000000000123720820519974                 0                 0 0
##      0.0000000142143709248919                   0                 0 0
##      0.0000000203570784591136                   0                 0 0
##      0.0000000942663046181582                   0                 0 0
##      0.0381424863643358                         0                 0 0
##      0.0395235614826762                         0                 0 0
##      0.0398504564629362                         0                 0 0
##      0.0449831541922517                         0                 0 0
##      0.150208567676068                          0                 0 0
##      0.291704657263826                          0                 0 0
##      0.31263158525612                           0                 0 0
##      0.313581394222809                          0                 0 0
##      0.399450114450523                          0                 0 0
##      0.419739887455571                          0                 0 0
##      0.425358901761228                          0                 0 0
##      0.594035429893685                          0                 0 0
##      0.671638488556335                          0                 0 0
##      0.688092298985074                          0                 0 0
##      0.806600378227794                          0                 0 0
##      0.867455094638368                          0                 0 0
##      0.897003448844096                          0                 0 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 1.34930555555556 4.020833333 6.15
##      0.000000000123720820519974                0           0    0
##      0.0000000142143709248919                  0           0    0
##      0.0000000203570784591136                  0           0    0
##      0.0000000942663046181582                  0           0    0
##      0.0381424863643358                        0           0    0
##      0.0395235614826762                        0           0    0
##      0.0398504564629362                        0           0    0
##      0.0449831541922517                        0           0    0
##      0.150208567676068                         0           0    0
##      0.291704657263826                         0           0    0
##      0.31263158525612                          0           0    0
##      0.313581394222809                         0           0    0
##      0.399450114450523                         0           0    0
##      0.419739887455571                         0           0    0
##      0.425358901761228                         0           0    0
##      0.594035429893685                         0           0    0
##      0.671638488556335                         0           0    0
##      0.688092298985074                         0           0    0
##      0.806600378227794                         0           0    0
##      0.867455094638368                         0           0    0
##      0.897003448844096                         0           0    0
## 
## , , OTT_Time = 0, Snapchat_Time = 0.503124999997222, Instagram_Time = 0.138888888888889
## 
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.125 0.142361111111111 0.152777777777778
##      0.000000000123720820519974     0                 0                 0
##      0.0000000142143709248919       0                 0                 0
##      0.0000000203570784591136       0                 0                 0
##      0.0000000942663046181582       0                 0                 0
##      0.0381424863643358             0                 0                 0
##      0.0395235614826762             0                 0                 0
##      0.0398504564629362             0                 0                 0
##      0.0449831541922517             0                 0                 0
##      0.150208567676068              0                 0                 0
##      0.291704657263826              0                 0                 0
##      0.31263158525612               0                 0                 0
##      0.313581394222809              0                 0                 0
##      0.399450114450523              0                 0                 0
##      0.419739887455571              0                 0                 0
##      0.425358901761228              0                 0                 0
##      0.594035429893685              0                 0                 0
##      0.671638488556335              0                 0                 0
##      0.688092298985074              0                 0                 0
##      0.806600378227794              0                 0                 0
##      0.867455094638368              0                 0                 0
##      0.897003448844096              0                 0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.174305555555556 0.208333333333333
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.220833333333333 0.25 0.270833333333333
##      0.000000000123720820519974                 0    0                 0
##      0.0000000142143709248919                   0    0                 0
##      0.0000000203570784591136                   0    0                 0
##      0.0000000942663046181582                   0    0                 0
##      0.0381424863643358                         0    0                 0
##      0.0395235614826762                         0    0                 0
##      0.0398504564629362                         0    0                 0
##      0.0449831541922517                         0    0                 0
##      0.150208567676068                          0    0                 0
##      0.291704657263826                          0    0                 0
##      0.31263158525612                           0    0                 0
##      0.313581394222809                          0    0                 0
##      0.399450114450523                          0    0                 0
##      0.419739887455571                          0    0                 0
##      0.425358901761228                          0    0                 0
##      0.594035429893685                          0    0                 0
##      0.671638488556335                          0    0                 0
##      0.688092298985074                          0    0                 0
##      0.806600378227794                          0    0                 0
##      0.867455094638368                          0    0                 0
##      0.897003448844096                          0    0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.289583333333333 0.371527777777778
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.409722222222222 0.416666666666667 0.5 0.55625
##      0.000000000123720820519974                 0                 0   0       0
##      0.0000000142143709248919                   0                 0   0       0
##      0.0000000203570784591136                   0                 0   0       0
##      0.0000000942663046181582                   0                 0   0       0
##      0.0381424863643358                         0                 0   0       0
##      0.0395235614826762                         0                 0   0       0
##      0.0398504564629362                         0                 0   0       0
##      0.0449831541922517                         0                 0   0       0
##      0.150208567676068                          0                 0   0       0
##      0.291704657263826                          0                 0   0       0
##      0.31263158525612                           0                 0   0       0
##      0.313581394222809                          0                 0   0       0
##      0.399450114450523                          0                 0   0       0
##      0.419739887455571                          0                 0   0       0
##      0.425358901761228                          0                 0   0       0
##      0.594035429893685                          0                 0   0       0
##      0.671638488556335                          0                 0   0       0
##      0.688092298985074                          0                 0   0       0
##      0.806600378227794                          0                 0   0       0
##      0.867455094638368                          0                 0   0       0
##      0.897003448844096                          0                 0   0       0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.639583333333333 0.907785087701754 1
##      0.000000000123720820519974                 0                 0 0
##      0.0000000142143709248919                   0                 0 0
##      0.0000000203570784591136                   0                 0 0
##      0.0000000942663046181582                   0                 0 0
##      0.0381424863643358                         0                 0 0
##      0.0395235614826762                         0                 0 0
##      0.0398504564629362                         0                 0 0
##      0.0449831541922517                         0                 0 0
##      0.150208567676068                          0                 0 0
##      0.291704657263826                          0                 0 0
##      0.31263158525612                           0                 0 0
##      0.313581394222809                          0                 0 0
##      0.399450114450523                          0                 0 0
##      0.419739887455571                          0                 0 0
##      0.425358901761228                          0                 0 0
##      0.594035429893685                          0                 0 0
##      0.671638488556335                          0                 0 0
##      0.688092298985074                          0                 0 0
##      0.806600378227794                          0                 0 0
##      0.867455094638368                          0                 0 0
##      0.897003448844096                          0                 0 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 1.34930555555556 4.020833333 6.15
##      0.000000000123720820519974                0           0    0
##      0.0000000142143709248919                  0           0    0
##      0.0000000203570784591136                  0           0    0
##      0.0000000942663046181582                  0           0    0
##      0.0381424863643358                        0           0    0
##      0.0395235614826762                        0           0    0
##      0.0398504564629362                        0           0    0
##      0.0449831541922517                        0           0    0
##      0.150208567676068                         0           0    0
##      0.291704657263826                         0           0    0
##      0.31263158525612                          0           0    0
##      0.313581394222809                         0           0    0
##      0.399450114450523                         0           0    0
##      0.419739887455571                         0           0    0
##      0.425358901761228                         0           0    0
##      0.594035429893685                         0           0    0
##      0.671638488556335                         0           0    0
##      0.688092298985074                         0           0    0
##      0.806600378227794                         0           0    0
##      0.867455094638368                         0           0    0
##      0.897003448844096                         0           0    0
## 
## , , OTT_Time = 0.102777777777778, Snapchat_Time = 0.503124999997222, Instagram_Time = 0.138888888888889
## 
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.125 0.142361111111111 0.152777777777778
##      0.000000000123720820519974     0                 0                 0
##      0.0000000142143709248919       0                 0                 0
##      0.0000000203570784591136       0                 0                 0
##      0.0000000942663046181582       0                 0                 0
##      0.0381424863643358             0                 0                 0
##      0.0395235614826762             0                 0                 0
##      0.0398504564629362             0                 0                 0
##      0.0449831541922517             0                 0                 0
##      0.150208567676068              0                 0                 0
##      0.291704657263826              0                 0                 0
##      0.31263158525612               0                 0                 0
##      0.313581394222809              0                 0                 0
##      0.399450114450523              0                 0                 0
##      0.419739887455571              0                 0                 0
##      0.425358901761228              0                 0                 0
##      0.594035429893685              0                 0                 0
##      0.671638488556335              0                 0                 0
##      0.688092298985074              0                 0                 0
##      0.806600378227794              0                 0                 0
##      0.867455094638368              0                 0                 0
##      0.897003448844096              0                 0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.174305555555556 0.208333333333333
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.220833333333333 0.25 0.270833333333333
##      0.000000000123720820519974                 0    0                 0
##      0.0000000142143709248919                   0    0                 0
##      0.0000000203570784591136                   0    0                 0
##      0.0000000942663046181582                   0    0                 0
##      0.0381424863643358                         0    0                 0
##      0.0395235614826762                         0    0                 0
##      0.0398504564629362                         0    0                 0
##      0.0449831541922517                         0    0                 0
##      0.150208567676068                          0    0                 0
##      0.291704657263826                          0    0                 0
##      0.31263158525612                           0    0                 0
##      0.313581394222809                          0    0                 0
##      0.399450114450523                          0    0                 0
##      0.419739887455571                          0    0                 0
##      0.425358901761228                          0    0                 0
##      0.594035429893685                          0    0                 0
##      0.671638488556335                          0    0                 0
##      0.688092298985074                          0    0                 0
##      0.806600378227794                          0    0                 0
##      0.867455094638368                          0    0                 0
##      0.897003448844096                          0    0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.289583333333333 0.371527777777778
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.409722222222222 0.416666666666667 0.5 0.55625
##      0.000000000123720820519974                 0                 0   0       0
##      0.0000000142143709248919                   0                 0   0       0
##      0.0000000203570784591136                   0                 0   0       0
##      0.0000000942663046181582                   0                 0   0       0
##      0.0381424863643358                         0                 0   0       0
##      0.0395235614826762                         0                 0   0       0
##      0.0398504564629362                         0                 0   0       0
##      0.0449831541922517                         0                 0   0       0
##      0.150208567676068                          0                 0   0       0
##      0.291704657263826                          0                 0   0       0
##      0.31263158525612                           0                 0   0       0
##      0.313581394222809                          0                 0   0       0
##      0.399450114450523                          0                 0   0       0
##      0.419739887455571                          0                 0   0       0
##      0.425358901761228                          0                 0   0       0
##      0.594035429893685                          0                 0   0       0
##      0.671638488556335                          0                 0   0       0
##      0.688092298985074                          0                 0   0       0
##      0.806600378227794                          0                 0   0       0
##      0.867455094638368                          0                 0   0       0
##      0.897003448844096                          0                 0   0       0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.639583333333333 0.907785087701754 1
##      0.000000000123720820519974                 0                 0 0
##      0.0000000142143709248919                   0                 0 0
##      0.0000000203570784591136                   0                 0 0
##      0.0000000942663046181582                   0                 0 0
##      0.0381424863643358                         0                 0 0
##      0.0395235614826762                         0                 0 0
##      0.0398504564629362                         0                 0 0
##      0.0449831541922517                         0                 0 0
##      0.150208567676068                          0                 0 0
##      0.291704657263826                          0                 0 0
##      0.31263158525612                           0                 0 0
##      0.313581394222809                          0                 0 0
##      0.399450114450523                          0                 0 0
##      0.419739887455571                          0                 0 0
##      0.425358901761228                          0                 0 0
##      0.594035429893685                          0                 0 0
##      0.671638488556335                          0                 0 0
##      0.688092298985074                          0                 0 0
##      0.806600378227794                          0                 0 0
##      0.867455094638368                          0                 0 0
##      0.897003448844096                          0                 0 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 1.34930555555556 4.020833333 6.15
##      0.000000000123720820519974                0           0    0
##      0.0000000142143709248919                  0           0    0
##      0.0000000203570784591136                  0           0    0
##      0.0000000942663046181582                  0           0    0
##      0.0381424863643358                        0           0    0
##      0.0395235614826762                        0           0    0
##      0.0398504564629362                        0           0    0
##      0.0449831541922517                        0           0    0
##      0.150208567676068                         0           0    0
##      0.291704657263826                         0           0    0
##      0.31263158525612                          0           0    0
##      0.313581394222809                         0           0    0
##      0.399450114450523                         0           0    0
##      0.419739887455571                         0           0    0
##      0.425358901761228                         0           0    0
##      0.594035429893685                         0           0    0
##      0.671638488556335                         0           0    0
##      0.688092298985074                         0           0    0
##      0.806600378227794                         0           0    0
##      0.867455094638368                         0           0    0
##      0.897003448844096                         0           0    0
## 
## , , OTT_Time = 0.125, Snapchat_Time = 0.503124999997222, Instagram_Time = 0.138888888888889
## 
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.125 0.142361111111111 0.152777777777778
##      0.000000000123720820519974     0                 0                 0
##      0.0000000142143709248919       0                 0                 0
##      0.0000000203570784591136       0                 0                 0
##      0.0000000942663046181582       0                 0                 0
##      0.0381424863643358             0                 0                 0
##      0.0395235614826762             0                 0                 0
##      0.0398504564629362             0                 0                 0
##      0.0449831541922517             0                 0                 0
##      0.150208567676068              0                 0                 0
##      0.291704657263826              0                 0                 0
##      0.31263158525612               0                 0                 0
##      0.313581394222809              0                 0                 0
##      0.399450114450523              0                 0                 0
##      0.419739887455571              0                 0                 0
##      0.425358901761228              0                 0                 0
##      0.594035429893685              0                 0                 0
##      0.671638488556335              0                 0                 0
##      0.688092298985074              0                 0                 0
##      0.806600378227794              0                 0                 0
##      0.867455094638368              0                 0                 0
##      0.897003448844096              0                 0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.174305555555556 0.208333333333333
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.220833333333333 0.25 0.270833333333333
##      0.000000000123720820519974                 0    0                 0
##      0.0000000142143709248919                   0    0                 0
##      0.0000000203570784591136                   0    0                 0
##      0.0000000942663046181582                   0    0                 0
##      0.0381424863643358                         0    0                 0
##      0.0395235614826762                         0    0                 0
##      0.0398504564629362                         0    0                 0
##      0.0449831541922517                         0    0                 0
##      0.150208567676068                          0    0                 0
##      0.291704657263826                          0    0                 0
##      0.31263158525612                           0    0                 0
##      0.313581394222809                          0    0                 0
##      0.399450114450523                          0    0                 0
##      0.419739887455571                          0    0                 0
##      0.425358901761228                          0    0                 0
##      0.594035429893685                          0    0                 0
##      0.671638488556335                          0    0                 0
##      0.688092298985074                          0    0                 0
##      0.806600378227794                          0    0                 0
##      0.867455094638368                          0    0                 0
##      0.897003448844096                          0    0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.289583333333333 0.371527777777778
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.409722222222222 0.416666666666667 0.5 0.55625
##      0.000000000123720820519974                 0                 0   0       0
##      0.0000000142143709248919                   0                 0   0       0
##      0.0000000203570784591136                   0                 0   0       0
##      0.0000000942663046181582                   0                 0   0       0
##      0.0381424863643358                         0                 0   0       0
##      0.0395235614826762                         0                 0   0       0
##      0.0398504564629362                         0                 0   0       0
##      0.0449831541922517                         0                 0   0       0
##      0.150208567676068                          0                 0   0       0
##      0.291704657263826                          0                 0   0       0
##      0.31263158525612                           0                 0   0       0
##      0.313581394222809                          0                 0   0       0
##      0.399450114450523                          0                 0   0       0
##      0.419739887455571                          0                 0   0       0
##      0.425358901761228                          0                 0   0       0
##      0.594035429893685                          0                 0   0       0
##      0.671638488556335                          0                 0   0       0
##      0.688092298985074                          0                 0   0       0
##      0.806600378227794                          0                 0   0       0
##      0.867455094638368                          0                 0   0       0
##      0.897003448844096                          0                 0   0       0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.639583333333333 0.907785087701754 1
##      0.000000000123720820519974                 0                 0 0
##      0.0000000142143709248919                   0                 0 0
##      0.0000000203570784591136                   0                 0 0
##      0.0000000942663046181582                   0                 0 0
##      0.0381424863643358                         0                 0 0
##      0.0395235614826762                         0                 0 0
##      0.0398504564629362                         0                 0 0
##      0.0449831541922517                         0                 0 0
##      0.150208567676068                          0                 0 0
##      0.291704657263826                          0                 0 0
##      0.31263158525612                           0                 0 0
##      0.313581394222809                          0                 0 0
##      0.399450114450523                          0                 0 0
##      0.419739887455571                          0                 0 0
##      0.425358901761228                          0                 0 0
##      0.594035429893685                          0                 0 0
##      0.671638488556335                          0                 0 0
##      0.688092298985074                          0                 0 0
##      0.806600378227794                          0                 0 0
##      0.867455094638368                          0                 0 0
##      0.897003448844096                          0                 0 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 1.34930555555556 4.020833333 6.15
##      0.000000000123720820519974                0           0    0
##      0.0000000142143709248919                  0           0    0
##      0.0000000203570784591136                  0           0    0
##      0.0000000942663046181582                  0           0    0
##      0.0381424863643358                        0           0    0
##      0.0395235614826762                        0           0    0
##      0.0398504564629362                        0           0    0
##      0.0449831541922517                        0           0    0
##      0.150208567676068                         0           0    0
##      0.291704657263826                         0           0    0
##      0.31263158525612                          0           0    0
##      0.313581394222809                         0           0    0
##      0.399450114450523                         0           0    0
##      0.419739887455571                         0           0    0
##      0.425358901761228                         0           0    0
##      0.594035429893685                         0           0    0
##      0.671638488556335                         0           0    0
##      0.688092298985074                         0           0    0
##      0.806600378227794                         0           0    0
##      0.867455094638368                         0           0    0
##      0.897003448844096                         0           0    0
## 
## , , OTT_Time = 0.416666666666667, Snapchat_Time = 0.503124999997222, Instagram_Time = 0.138888888888889
## 
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.125 0.142361111111111 0.152777777777778
##      0.000000000123720820519974     0                 0                 0
##      0.0000000142143709248919       0                 0                 0
##      0.0000000203570784591136       0                 0                 0
##      0.0000000942663046181582       0                 0                 0
##      0.0381424863643358             0                 0                 0
##      0.0395235614826762             0                 0                 0
##      0.0398504564629362             0                 0                 0
##      0.0449831541922517             0                 0                 0
##      0.150208567676068              0                 0                 0
##      0.291704657263826              0                 0                 0
##      0.31263158525612               0                 0                 0
##      0.313581394222809              0                 0                 0
##      0.399450114450523              0                 0                 0
##      0.419739887455571              0                 0                 0
##      0.425358901761228              0                 0                 0
##      0.594035429893685              0                 0                 0
##      0.671638488556335              0                 0                 0
##      0.688092298985074              0                 0                 0
##      0.806600378227794              0                 0                 0
##      0.867455094638368              0                 0                 0
##      0.897003448844096              0                 0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.174305555555556 0.208333333333333
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.220833333333333 0.25 0.270833333333333
##      0.000000000123720820519974                 0    0                 0
##      0.0000000142143709248919                   0    0                 0
##      0.0000000203570784591136                   0    0                 0
##      0.0000000942663046181582                   0    0                 0
##      0.0381424863643358                         0    0                 0
##      0.0395235614826762                         0    0                 0
##      0.0398504564629362                         0    0                 0
##      0.0449831541922517                         0    0                 0
##      0.150208567676068                          0    0                 0
##      0.291704657263826                          0    0                 0
##      0.31263158525612                           0    0                 0
##      0.313581394222809                          0    0                 0
##      0.399450114450523                          0    0                 0
##      0.419739887455571                          0    0                 0
##      0.425358901761228                          0    0                 0
##      0.594035429893685                          0    0                 0
##      0.671638488556335                          0    0                 0
##      0.688092298985074                          0    0                 0
##      0.806600378227794                          0    0                 0
##      0.867455094638368                          0    0                 0
##      0.897003448844096                          0    0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.289583333333333 0.371527777777778
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.409722222222222 0.416666666666667 0.5 0.55625
##      0.000000000123720820519974                 0                 0   0       0
##      0.0000000142143709248919                   0                 0   0       0
##      0.0000000203570784591136                   0                 0   0       0
##      0.0000000942663046181582                   0                 0   0       0
##      0.0381424863643358                         0                 0   0       0
##      0.0395235614826762                         0                 0   0       0
##      0.0398504564629362                         0                 0   0       0
##      0.0449831541922517                         0                 0   0       0
##      0.150208567676068                          0                 0   0       0
##      0.291704657263826                          0                 0   0       0
##      0.31263158525612                           0                 0   0       0
##      0.313581394222809                          0                 0   0       0
##      0.399450114450523                          0                 0   0       0
##      0.419739887455571                          0                 0   0       0
##      0.425358901761228                          0                 0   0       0
##      0.594035429893685                          0                 0   0       0
##      0.671638488556335                          0                 0   0       0
##      0.688092298985074                          0                 0   0       0
##      0.806600378227794                          0                 0   0       0
##      0.867455094638368                          0                 0   0       0
##      0.897003448844096                          0                 0   0       0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.639583333333333 0.907785087701754 1
##      0.000000000123720820519974                 0                 0 0
##      0.0000000142143709248919                   0                 0 0
##      0.0000000203570784591136                   0                 0 0
##      0.0000000942663046181582                   0                 0 0
##      0.0381424863643358                         0                 0 0
##      0.0395235614826762                         0                 0 0
##      0.0398504564629362                         0                 0 0
##      0.0449831541922517                         0                 0 0
##      0.150208567676068                          0                 0 0
##      0.291704657263826                          0                 0 0
##      0.31263158525612                           0                 0 0
##      0.313581394222809                          0                 0 0
##      0.399450114450523                          0                 0 0
##      0.419739887455571                          0                 0 0
##      0.425358901761228                          0                 0 0
##      0.594035429893685                          0                 0 0
##      0.671638488556335                          0                 0 0
##      0.688092298985074                          0                 0 0
##      0.806600378227794                          0                 0 0
##      0.867455094638368                          0                 0 0
##      0.897003448844096                          0                 0 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 1.34930555555556 4.020833333 6.15
##      0.000000000123720820519974                0           0    0
##      0.0000000142143709248919                  0           0    0
##      0.0000000203570784591136                  0           0    0
##      0.0000000942663046181582                  0           0    0
##      0.0381424863643358                        0           0    0
##      0.0395235614826762                        0           0    0
##      0.0398504564629362                        0           0    0
##      0.0449831541922517                        0           0    0
##      0.150208567676068                         0           0    0
##      0.291704657263826                         0           0    0
##      0.31263158525612                          0           0    0
##      0.313581394222809                         0           0    0
##      0.399450114450523                         0           0    0
##      0.419739887455571                         0           0    0
##      0.425358901761228                         0           0    0
##      0.594035429893685                         0           0    0
##      0.671638488556335                         0           0    0
##      0.688092298985074                         0           0    0
##      0.806600378227794                         0           0    0
##      0.867455094638368                         0           0    0
##      0.897003448844096                         0           0    0
## 
## , , OTT_Time = 0.5104166667, Snapchat_Time = 0.503124999997222, Instagram_Time = 0.138888888888889
## 
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.125 0.142361111111111 0.152777777777778
##      0.000000000123720820519974     0                 0                 0
##      0.0000000142143709248919       0                 0                 0
##      0.0000000203570784591136       0                 0                 0
##      0.0000000942663046181582       0                 0                 0
##      0.0381424863643358             0                 0                 0
##      0.0395235614826762             0                 0                 0
##      0.0398504564629362             0                 0                 0
##      0.0449831541922517             0                 0                 0
##      0.150208567676068              0                 0                 0
##      0.291704657263826              0                 0                 0
##      0.31263158525612               0                 0                 0
##      0.313581394222809              0                 0                 0
##      0.399450114450523              0                 0                 0
##      0.419739887455571              0                 0                 0
##      0.425358901761228              0                 0                 0
##      0.594035429893685              0                 0                 0
##      0.671638488556335              0                 0                 0
##      0.688092298985074              0                 0                 0
##      0.806600378227794              0                 0                 0
##      0.867455094638368              0                 0                 0
##      0.897003448844096              0                 0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.174305555555556 0.208333333333333
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.220833333333333 0.25 0.270833333333333
##      0.000000000123720820519974                 0    0                 0
##      0.0000000142143709248919                   0    0                 0
##      0.0000000203570784591136                   0    0                 0
##      0.0000000942663046181582                   0    0                 0
##      0.0381424863643358                         0    0                 0
##      0.0395235614826762                         0    0                 0
##      0.0398504564629362                         0    0                 0
##      0.0449831541922517                         0    0                 0
##      0.150208567676068                          0    0                 0
##      0.291704657263826                          0    0                 0
##      0.31263158525612                           0    0                 0
##      0.313581394222809                          0    0                 0
##      0.399450114450523                          0    0                 0
##      0.419739887455571                          0    0                 0
##      0.425358901761228                          0    0                 0
##      0.594035429893685                          0    0                 0
##      0.671638488556335                          0    0                 0
##      0.688092298985074                          0    0                 0
##      0.806600378227794                          0    0                 0
##      0.867455094638368                          0    0                 0
##      0.897003448844096                          0    0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.289583333333333 0.371527777777778
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.409722222222222 0.416666666666667 0.5 0.55625
##      0.000000000123720820519974                 0                 0   0       0
##      0.0000000142143709248919                   0                 0   0       0
##      0.0000000203570784591136                   0                 0   0       0
##      0.0000000942663046181582                   0                 0   0       0
##      0.0381424863643358                         0                 0   0       0
##      0.0395235614826762                         0                 0   0       0
##      0.0398504564629362                         0                 0   0       0
##      0.0449831541922517                         0                 0   0       0
##      0.150208567676068                          0                 0   0       0
##      0.291704657263826                          0                 0   0       0
##      0.31263158525612                           0                 0   0       0
##      0.313581394222809                          0                 0   0       0
##      0.399450114450523                          0                 0   0       0
##      0.419739887455571                          0                 0   0       0
##      0.425358901761228                          0                 0   0       0
##      0.594035429893685                          0                 0   0       0
##      0.671638488556335                          0                 0   0       0
##      0.688092298985074                          0                 0   0       0
##      0.806600378227794                          0                 0   0       0
##      0.867455094638368                          0                 0   0       0
##      0.897003448844096                          0                 0   0       0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.639583333333333 0.907785087701754 1
##      0.000000000123720820519974                 0                 0 0
##      0.0000000142143709248919                   0                 0 0
##      0.0000000203570784591136                   0                 0 0
##      0.0000000942663046181582                   0                 0 0
##      0.0381424863643358                         0                 0 0
##      0.0395235614826762                         0                 0 0
##      0.0398504564629362                         0                 0 0
##      0.0449831541922517                         0                 0 0
##      0.150208567676068                          0                 0 0
##      0.291704657263826                          0                 0 0
##      0.31263158525612                           0                 0 0
##      0.313581394222809                          0                 0 0
##      0.399450114450523                          0                 0 0
##      0.419739887455571                          0                 0 0
##      0.425358901761228                          0                 0 0
##      0.594035429893685                          0                 0 0
##      0.671638488556335                          0                 0 0
##      0.688092298985074                          0                 0 0
##      0.806600378227794                          0                 0 0
##      0.867455094638368                          0                 0 0
##      0.897003448844096                          0                 0 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 1.34930555555556 4.020833333 6.15
##      0.000000000123720820519974                0           0    0
##      0.0000000142143709248919                  0           0    0
##      0.0000000203570784591136                  0           0    0
##      0.0000000942663046181582                  0           0    0
##      0.0381424863643358                        0           0    0
##      0.0395235614826762                        0           0    0
##      0.0398504564629362                        0           0    0
##      0.0449831541922517                        0           0    0
##      0.150208567676068                         0           0    0
##      0.291704657263826                         0           0    0
##      0.31263158525612                          0           0    0
##      0.313581394222809                         0           0    0
##      0.399450114450523                         0           0    0
##      0.419739887455571                         0           0    0
##      0.425358901761228                         0           0    0
##      0.594035429893685                         0           0    0
##      0.671638488556335                         0           0    0
##      0.688092298985074                         0           0    0
##      0.806600378227794                         0           0    0
##      0.867455094638368                         0           0    0
##      0.897003448844096                         0           0    0
## 
## , , OTT_Time = 1.44460470085726, Snapchat_Time = 0.503124999997222, Instagram_Time = 0.138888888888889
## 
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.125 0.142361111111111 0.152777777777778
##      0.000000000123720820519974     0                 0                 0
##      0.0000000142143709248919       0                 0                 0
##      0.0000000203570784591136       0                 0                 0
##      0.0000000942663046181582       0                 0                 0
##      0.0381424863643358             0                 0                 1
##      0.0395235614826762             0                 0                 0
##      0.0398504564629362             0                 0                 0
##      0.0449831541922517             0                 0                 0
##      0.150208567676068              0                 0                 0
##      0.291704657263826              0                 0                 0
##      0.31263158525612               0                 0                 0
##      0.313581394222809              0                 0                 0
##      0.399450114450523              0                 0                 0
##      0.419739887455571              0                 0                 0
##      0.425358901761228              0                 0                 0
##      0.594035429893685              0                 0                 0
##      0.671638488556335              0                 0                 0
##      0.688092298985074              0                 0                 0
##      0.806600378227794              0                 0                 0
##      0.867455094638368              0                 0                 0
##      0.897003448844096              0                 0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.174305555555556 0.208333333333333
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.220833333333333 0.25 0.270833333333333
##      0.000000000123720820519974                 0    0                 0
##      0.0000000142143709248919                   0    0                 0
##      0.0000000203570784591136                   0    0                 0
##      0.0000000942663046181582                   0    0                 0
##      0.0381424863643358                         0    0                 0
##      0.0395235614826762                         0    0                 0
##      0.0398504564629362                         0    0                 0
##      0.0449831541922517                         0    0                 0
##      0.150208567676068                          0    0                 0
##      0.291704657263826                          0    0                 0
##      0.31263158525612                           0    0                 0
##      0.313581394222809                          0    0                 0
##      0.399450114450523                          0    0                 0
##      0.419739887455571                          0    0                 0
##      0.425358901761228                          0    0                 0
##      0.594035429893685                          0    0                 0
##      0.671638488556335                          0    0                 0
##      0.688092298985074                          0    0                 0
##      0.806600378227794                          0    0                 0
##      0.867455094638368                          0    0                 0
##      0.897003448844096                          0    0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.289583333333333 0.371527777777778
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.409722222222222 0.416666666666667 0.5 0.55625
##      0.000000000123720820519974                 0                 0   0       0
##      0.0000000142143709248919                   0                 0   0       0
##      0.0000000203570784591136                   0                 0   0       0
##      0.0000000942663046181582                   0                 0   0       0
##      0.0381424863643358                         0                 0   0       0
##      0.0395235614826762                         0                 0   0       0
##      0.0398504564629362                         0                 0   0       0
##      0.0449831541922517                         0                 0   0       0
##      0.150208567676068                          0                 0   0       0
##      0.291704657263826                          0                 0   0       0
##      0.31263158525612                           0                 0   0       0
##      0.313581394222809                          0                 0   0       0
##      0.399450114450523                          0                 0   0       0
##      0.419739887455571                          0                 0   0       0
##      0.425358901761228                          0                 0   0       0
##      0.594035429893685                          0                 0   0       0
##      0.671638488556335                          0                 0   0       0
##      0.688092298985074                          0                 0   0       0
##      0.806600378227794                          0                 0   0       0
##      0.867455094638368                          0                 0   0       0
##      0.897003448844096                          0                 0   0       0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.639583333333333 0.907785087701754 1
##      0.000000000123720820519974                 0                 0 0
##      0.0000000142143709248919                   0                 0 0
##      0.0000000203570784591136                   0                 0 0
##      0.0000000942663046181582                   0                 0 0
##      0.0381424863643358                         0                 0 0
##      0.0395235614826762                         0                 0 0
##      0.0398504564629362                         0                 0 0
##      0.0449831541922517                         0                 0 0
##      0.150208567676068                          0                 0 0
##      0.291704657263826                          0                 0 0
##      0.31263158525612                           0                 0 0
##      0.313581394222809                          0                 0 0
##      0.399450114450523                          0                 0 0
##      0.419739887455571                          0                 0 0
##      0.425358901761228                          0                 0 0
##      0.594035429893685                          0                 0 0
##      0.671638488556335                          0                 0 0
##      0.688092298985074                          0                 0 0
##      0.806600378227794                          0                 0 0
##      0.867455094638368                          0                 0 0
##      0.897003448844096                          0                 0 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 1.34930555555556 4.020833333 6.15
##      0.000000000123720820519974                0           0    0
##      0.0000000142143709248919                  0           0    0
##      0.0000000203570784591136                  0           0    0
##      0.0000000942663046181582                  0           0    0
##      0.0381424863643358                        0           0    0
##      0.0395235614826762                        0           0    0
##      0.0398504564629362                        0           0    0
##      0.0449831541922517                        0           0    0
##      0.150208567676068                         0           0    0
##      0.291704657263826                         0           0    0
##      0.31263158525612                          0           0    0
##      0.313581394222809                         0           0    0
##      0.399450114450523                         0           0    0
##      0.419739887455571                         0           0    0
##      0.425358901761228                         0           0    0
##      0.594035429893685                         0           0    0
##      0.671638488556335                         0           0    0
##      0.688092298985074                         0           0    0
##      0.806600378227794                         0           0    0
##      0.867455094638368                         0           0    0
##      0.897003448844096                         0           0    0
## 
## , , OTT_Time = 3, Snapchat_Time = 0.503124999997222, Instagram_Time = 0.138888888888889
## 
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.125 0.142361111111111 0.152777777777778
##      0.000000000123720820519974     0                 0                 0
##      0.0000000142143709248919       0                 0                 0
##      0.0000000203570784591136       0                 0                 0
##      0.0000000942663046181582       0                 0                 0
##      0.0381424863643358             0                 0                 0
##      0.0395235614826762             0                 0                 0
##      0.0398504564629362             0                 0                 0
##      0.0449831541922517             0                 0                 0
##      0.150208567676068              0                 0                 0
##      0.291704657263826              0                 0                 0
##      0.31263158525612               0                 0                 0
##      0.313581394222809              0                 0                 0
##      0.399450114450523              0                 0                 0
##      0.419739887455571              0                 0                 0
##      0.425358901761228              0                 0                 0
##      0.594035429893685              0                 0                 0
##      0.671638488556335              0                 0                 0
##      0.688092298985074              0                 0                 0
##      0.806600378227794              0                 0                 0
##      0.867455094638368              0                 0                 0
##      0.897003448844096              0                 0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.174305555555556 0.208333333333333
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.220833333333333 0.25 0.270833333333333
##      0.000000000123720820519974                 0    0                 0
##      0.0000000142143709248919                   0    0                 0
##      0.0000000203570784591136                   0    0                 0
##      0.0000000942663046181582                   0    0                 0
##      0.0381424863643358                         0    0                 0
##      0.0395235614826762                         0    0                 0
##      0.0398504564629362                         0    0                 0
##      0.0449831541922517                         0    0                 0
##      0.150208567676068                          0    0                 0
##      0.291704657263826                          0    0                 0
##      0.31263158525612                           0    0                 0
##      0.313581394222809                          0    0                 0
##      0.399450114450523                          0    0                 0
##      0.419739887455571                          0    0                 0
##      0.425358901761228                          0    0                 0
##      0.594035429893685                          0    0                 0
##      0.671638488556335                          0    0                 0
##      0.688092298985074                          0    0                 0
##      0.806600378227794                          0    0                 0
##      0.867455094638368                          0    0                 0
##      0.897003448844096                          0    0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.289583333333333 0.371527777777778
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.409722222222222 0.416666666666667 0.5 0.55625
##      0.000000000123720820519974                 0                 0   0       0
##      0.0000000142143709248919                   0                 0   0       0
##      0.0000000203570784591136                   0                 0   0       0
##      0.0000000942663046181582                   0                 0   0       0
##      0.0381424863643358                         0                 0   0       0
##      0.0395235614826762                         0                 0   0       0
##      0.0398504564629362                         0                 0   0       0
##      0.0449831541922517                         0                 0   0       0
##      0.150208567676068                          0                 0   0       0
##      0.291704657263826                          0                 0   0       0
##      0.31263158525612                           0                 0   0       0
##      0.313581394222809                          0                 0   0       0
##      0.399450114450523                          0                 0   0       0
##      0.419739887455571                          0                 0   0       0
##      0.425358901761228                          0                 0   0       0
##      0.594035429893685                          0                 0   0       0
##      0.671638488556335                          0                 0   0       0
##      0.688092298985074                          0                 0   0       0
##      0.806600378227794                          0                 0   0       0
##      0.867455094638368                          0                 0   0       0
##      0.897003448844096                          0                 0   0       0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.639583333333333 0.907785087701754 1
##      0.000000000123720820519974                 0                 0 0
##      0.0000000142143709248919                   0                 0 0
##      0.0000000203570784591136                   0                 0 0
##      0.0000000942663046181582                   0                 0 0
##      0.0381424863643358                         0                 0 0
##      0.0395235614826762                         0                 0 0
##      0.0398504564629362                         0                 0 0
##      0.0449831541922517                         0                 0 0
##      0.150208567676068                          0                 0 0
##      0.291704657263826                          0                 0 0
##      0.31263158525612                           0                 0 0
##      0.313581394222809                          0                 0 0
##      0.399450114450523                          0                 0 0
##      0.419739887455571                          0                 0 0
##      0.425358901761228                          0                 0 0
##      0.594035429893685                          0                 0 0
##      0.671638488556335                          0                 0 0
##      0.688092298985074                          0                 0 0
##      0.806600378227794                          0                 0 0
##      0.867455094638368                          0                 0 0
##      0.897003448844096                          0                 0 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 1.34930555555556 4.020833333 6.15
##      0.000000000123720820519974                0           0    0
##      0.0000000142143709248919                  0           0    0
##      0.0000000203570784591136                  0           0    0
##      0.0000000942663046181582                  0           0    0
##      0.0381424863643358                        0           0    0
##      0.0395235614826762                        0           0    0
##      0.0398504564629362                        0           0    0
##      0.0449831541922517                        0           0    0
##      0.150208567676068                         0           0    0
##      0.291704657263826                         0           0    0
##      0.31263158525612                          0           0    0
##      0.313581394222809                         0           0    0
##      0.399450114450523                         0           0    0
##      0.419739887455571                         0           0    0
##      0.425358901761228                         0           0    0
##      0.594035429893685                         0           0    0
##      0.671638488556335                         0           0    0
##      0.688092298985074                         0           0    0
##      0.806600378227794                         0           0    0
##      0.867455094638368                         0           0    0
##      0.897003448844096                         0           0    0
## 
## , , OTT_Time = 14.5, Snapchat_Time = 0.503124999997222, Instagram_Time = 0.138888888888889
## 
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.125 0.142361111111111 0.152777777777778
##      0.000000000123720820519974     0                 0                 0
##      0.0000000142143709248919       0                 0                 0
##      0.0000000203570784591136       0                 0                 0
##      0.0000000942663046181582       0                 0                 0
##      0.0381424863643358             0                 0                 0
##      0.0395235614826762             0                 0                 0
##      0.0398504564629362             0                 0                 0
##      0.0449831541922517             0                 0                 0
##      0.150208567676068              0                 0                 0
##      0.291704657263826              0                 0                 0
##      0.31263158525612               0                 0                 0
##      0.313581394222809              0                 0                 0
##      0.399450114450523              0                 0                 0
##      0.419739887455571              0                 0                 0
##      0.425358901761228              0                 0                 0
##      0.594035429893685              0                 0                 0
##      0.671638488556335              0                 0                 0
##      0.688092298985074              0                 0                 0
##      0.806600378227794              0                 0                 0
##      0.867455094638368              0                 0                 0
##      0.897003448844096              0                 0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.174305555555556 0.208333333333333
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.220833333333333 0.25 0.270833333333333
##      0.000000000123720820519974                 0    0                 0
##      0.0000000142143709248919                   0    0                 0
##      0.0000000203570784591136                   0    0                 0
##      0.0000000942663046181582                   0    0                 0
##      0.0381424863643358                         0    0                 0
##      0.0395235614826762                         0    0                 0
##      0.0398504564629362                         0    0                 0
##      0.0449831541922517                         0    0                 0
##      0.150208567676068                          0    0                 0
##      0.291704657263826                          0    0                 0
##      0.31263158525612                           0    0                 0
##      0.313581394222809                          0    0                 0
##      0.399450114450523                          0    0                 0
##      0.419739887455571                          0    0                 0
##      0.425358901761228                          0    0                 0
##      0.594035429893685                          0    0                 0
##      0.671638488556335                          0    0                 0
##      0.688092298985074                          0    0                 0
##      0.806600378227794                          0    0                 0
##      0.867455094638368                          0    0                 0
##      0.897003448844096                          0    0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.289583333333333 0.371527777777778
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.409722222222222 0.416666666666667 0.5 0.55625
##      0.000000000123720820519974                 0                 0   0       0
##      0.0000000142143709248919                   0                 0   0       0
##      0.0000000203570784591136                   0                 0   0       0
##      0.0000000942663046181582                   0                 0   0       0
##      0.0381424863643358                         0                 0   0       0
##      0.0395235614826762                         0                 0   0       0
##      0.0398504564629362                         0                 0   0       0
##      0.0449831541922517                         0                 0   0       0
##      0.150208567676068                          0                 0   0       0
##      0.291704657263826                          0                 0   0       0
##      0.31263158525612                           0                 0   0       0
##      0.313581394222809                          0                 0   0       0
##      0.399450114450523                          0                 0   0       0
##      0.419739887455571                          0                 0   0       0
##      0.425358901761228                          0                 0   0       0
##      0.594035429893685                          0                 0   0       0
##      0.671638488556335                          0                 0   0       0
##      0.688092298985074                          0                 0   0       0
##      0.806600378227794                          0                 0   0       0
##      0.867455094638368                          0                 0   0       0
##      0.897003448844096                          0                 0   0       0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.639583333333333 0.907785087701754 1
##      0.000000000123720820519974                 0                 0 0
##      0.0000000142143709248919                   0                 0 0
##      0.0000000203570784591136                   0                 0 0
##      0.0000000942663046181582                   0                 0 0
##      0.0381424863643358                         0                 0 0
##      0.0395235614826762                         0                 0 0
##      0.0398504564629362                         0                 0 0
##      0.0449831541922517                         0                 0 0
##      0.150208567676068                          0                 0 0
##      0.291704657263826                          0                 0 0
##      0.31263158525612                           0                 0 0
##      0.313581394222809                          0                 0 0
##      0.399450114450523                          0                 0 0
##      0.419739887455571                          0                 0 0
##      0.425358901761228                          0                 0 0
##      0.594035429893685                          0                 0 0
##      0.671638488556335                          0                 0 0
##      0.688092298985074                          0                 0 0
##      0.806600378227794                          0                 0 0
##      0.867455094638368                          0                 0 0
##      0.897003448844096                          0                 0 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 1.34930555555556 4.020833333 6.15
##      0.000000000123720820519974                0           0    0
##      0.0000000142143709248919                  0           0    0
##      0.0000000203570784591136                  0           0    0
##      0.0000000942663046181582                  0           0    0
##      0.0381424863643358                        0           0    0
##      0.0395235614826762                        0           0    0
##      0.0398504564629362                        0           0    0
##      0.0449831541922517                        0           0    0
##      0.150208567676068                         0           0    0
##      0.291704657263826                         0           0    0
##      0.31263158525612                          0           0    0
##      0.313581394222809                         0           0    0
##      0.399450114450523                         0           0    0
##      0.419739887455571                         0           0    0
##      0.425358901761228                         0           0    0
##      0.594035429893685                         0           0    0
##      0.671638488556335                         0           0    0
##      0.688092298985074                         0           0    0
##      0.806600378227794                         0           0    0
##      0.867455094638368                         0           0    0
##      0.897003448844096                         0           0    0
## 
## , , OTT_Time = 0, Snapchat_Time = 0.6208333333, Instagram_Time = 0.138888888888889
## 
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.125 0.142361111111111 0.152777777777778
##      0.000000000123720820519974     0                 0                 0
##      0.0000000142143709248919       0                 0                 0
##      0.0000000203570784591136       0                 0                 0
##      0.0000000942663046181582       0                 0                 0
##      0.0381424863643358             0                 0                 0
##      0.0395235614826762             0                 0                 0
##      0.0398504564629362             0                 0                 0
##      0.0449831541922517             0                 0                 0
##      0.150208567676068              0                 0                 0
##      0.291704657263826              0                 0                 0
##      0.31263158525612               0                 0                 0
##      0.313581394222809              0                 0                 0
##      0.399450114450523              0                 0                 0
##      0.419739887455571              0                 0                 0
##      0.425358901761228              0                 0                 0
##      0.594035429893685              0                 0                 0
##      0.671638488556335              0                 0                 0
##      0.688092298985074              0                 0                 0
##      0.806600378227794              0                 0                 0
##      0.867455094638368              0                 0                 0
##      0.897003448844096              0                 0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.174305555555556 0.208333333333333
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.220833333333333 0.25 0.270833333333333
##      0.000000000123720820519974                 0    0                 0
##      0.0000000142143709248919                   0    0                 0
##      0.0000000203570784591136                   0    0                 0
##      0.0000000942663046181582                   0    0                 0
##      0.0381424863643358                         0    0                 0
##      0.0395235614826762                         0    0                 0
##      0.0398504564629362                         0    0                 0
##      0.0449831541922517                         0    0                 0
##      0.150208567676068                          0    0                 0
##      0.291704657263826                          0    0                 0
##      0.31263158525612                           0    0                 0
##      0.313581394222809                          0    0                 0
##      0.399450114450523                          0    0                 0
##      0.419739887455571                          0    0                 0
##      0.425358901761228                          0    0                 0
##      0.594035429893685                          0    0                 0
##      0.671638488556335                          0    0                 0
##      0.688092298985074                          0    0                 0
##      0.806600378227794                          0    0                 0
##      0.867455094638368                          0    0                 0
##      0.897003448844096                          0    0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.289583333333333 0.371527777777778
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.409722222222222 0.416666666666667 0.5 0.55625
##      0.000000000123720820519974                 0                 0   0       0
##      0.0000000142143709248919                   0                 0   0       0
##      0.0000000203570784591136                   0                 0   0       0
##      0.0000000942663046181582                   0                 0   0       0
##      0.0381424863643358                         0                 0   0       0
##      0.0395235614826762                         0                 0   0       0
##      0.0398504564629362                         0                 0   0       0
##      0.0449831541922517                         0                 0   0       0
##      0.150208567676068                          0                 0   0       0
##      0.291704657263826                          0                 0   0       0
##      0.31263158525612                           0                 0   0       0
##      0.313581394222809                          0                 0   0       0
##      0.399450114450523                          0                 0   0       0
##      0.419739887455571                          0                 0   0       0
##      0.425358901761228                          0                 0   0       0
##      0.594035429893685                          0                 0   0       0
##      0.671638488556335                          0                 0   0       0
##      0.688092298985074                          0                 0   0       0
##      0.806600378227794                          0                 0   0       0
##      0.867455094638368                          0                 0   0       0
##      0.897003448844096                          0                 0   0       0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.639583333333333 0.907785087701754 1
##      0.000000000123720820519974                 0                 0 0
##      0.0000000142143709248919                   0                 0 0
##      0.0000000203570784591136                   0                 0 0
##      0.0000000942663046181582                   0                 0 0
##      0.0381424863643358                         0                 0 0
##      0.0395235614826762                         0                 0 0
##      0.0398504564629362                         0                 0 0
##      0.0449831541922517                         0                 0 0
##      0.150208567676068                          0                 0 0
##      0.291704657263826                          0                 0 0
##      0.31263158525612                           0                 0 0
##      0.313581394222809                          0                 0 0
##      0.399450114450523                          0                 0 0
##      0.419739887455571                          0                 0 0
##      0.425358901761228                          0                 0 0
##      0.594035429893685                          0                 0 0
##      0.671638488556335                          0                 0 0
##      0.688092298985074                          0                 0 0
##      0.806600378227794                          0                 0 0
##      0.867455094638368                          0                 0 0
##      0.897003448844096                          0                 0 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 1.34930555555556 4.020833333 6.15
##      0.000000000123720820519974                0           0    0
##      0.0000000142143709248919                  0           0    0
##      0.0000000203570784591136                  0           0    0
##      0.0000000942663046181582                  0           0    0
##      0.0381424863643358                        0           0    0
##      0.0395235614826762                        0           0    0
##      0.0398504564629362                        0           0    0
##      0.0449831541922517                        0           0    0
##      0.150208567676068                         0           0    0
##      0.291704657263826                         0           0    0
##      0.31263158525612                          0           0    0
##      0.313581394222809                         0           0    0
##      0.399450114450523                         0           0    0
##      0.419739887455571                         0           0    0
##      0.425358901761228                         0           0    0
##      0.594035429893685                         0           0    0
##      0.671638488556335                         0           0    0
##      0.688092298985074                         0           0    0
##      0.806600378227794                         0           0    0
##      0.867455094638368                         0           0    0
##      0.897003448844096                         0           0    0
## 
## , , OTT_Time = 0.102777777777778, Snapchat_Time = 0.6208333333, Instagram_Time = 0.138888888888889
## 
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.125 0.142361111111111 0.152777777777778
##      0.000000000123720820519974     0                 0                 0
##      0.0000000142143709248919       0                 0                 0
##      0.0000000203570784591136       0                 0                 0
##      0.0000000942663046181582       0                 0                 0
##      0.0381424863643358             0                 0                 0
##      0.0395235614826762             0                 0                 0
##      0.0398504564629362             0                 0                 0
##      0.0449831541922517             0                 0                 0
##      0.150208567676068              0                 0                 0
##      0.291704657263826              0                 0                 0
##      0.31263158525612               0                 0                 0
##      0.313581394222809              0                 0                 0
##      0.399450114450523              0                 0                 0
##      0.419739887455571              0                 0                 0
##      0.425358901761228              0                 0                 0
##      0.594035429893685              0                 0                 0
##      0.671638488556335              0                 0                 0
##      0.688092298985074              0                 0                 0
##      0.806600378227794              0                 0                 0
##      0.867455094638368              0                 0                 0
##      0.897003448844096              0                 0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.174305555555556 0.208333333333333
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.220833333333333 0.25 0.270833333333333
##      0.000000000123720820519974                 0    0                 0
##      0.0000000142143709248919                   0    0                 0
##      0.0000000203570784591136                   0    0                 0
##      0.0000000942663046181582                   0    0                 0
##      0.0381424863643358                         0    0                 0
##      0.0395235614826762                         0    0                 0
##      0.0398504564629362                         0    0                 0
##      0.0449831541922517                         0    0                 0
##      0.150208567676068                          0    0                 0
##      0.291704657263826                          0    0                 0
##      0.31263158525612                           0    0                 0
##      0.313581394222809                          0    0                 0
##      0.399450114450523                          0    0                 0
##      0.419739887455571                          0    0                 0
##      0.425358901761228                          0    0                 0
##      0.594035429893685                          0    0                 0
##      0.671638488556335                          0    0                 0
##      0.688092298985074                          0    0                 0
##      0.806600378227794                          0    0                 0
##      0.867455094638368                          0    0                 0
##      0.897003448844096                          0    0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.289583333333333 0.371527777777778
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.409722222222222 0.416666666666667 0.5 0.55625
##      0.000000000123720820519974                 0                 0   0       0
##      0.0000000142143709248919                   0                 0   0       0
##      0.0000000203570784591136                   0                 0   0       0
##      0.0000000942663046181582                   0                 0   0       0
##      0.0381424863643358                         0                 0   0       0
##      0.0395235614826762                         0                 0   0       0
##      0.0398504564629362                         0                 0   0       0
##      0.0449831541922517                         0                 0   0       0
##      0.150208567676068                          0                 0   0       0
##      0.291704657263826                          0                 0   0       0
##      0.31263158525612                           0                 0   0       0
##      0.313581394222809                          0                 0   0       0
##      0.399450114450523                          0                 0   0       0
##      0.419739887455571                          0                 0   0       0
##      0.425358901761228                          0                 0   0       0
##      0.594035429893685                          0                 0   0       0
##      0.671638488556335                          0                 0   0       0
##      0.688092298985074                          0                 0   0       0
##      0.806600378227794                          0                 0   0       0
##      0.867455094638368                          0                 0   0       0
##      0.897003448844096                          0                 0   0       0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.639583333333333 0.907785087701754 1
##      0.000000000123720820519974                 0                 0 0
##      0.0000000142143709248919                   0                 0 0
##      0.0000000203570784591136                   0                 0 0
##      0.0000000942663046181582                   0                 0 0
##      0.0381424863643358                         0                 0 0
##      0.0395235614826762                         0                 0 0
##      0.0398504564629362                         0                 0 0
##      0.0449831541922517                         0                 0 0
##      0.150208567676068                          0                 0 0
##      0.291704657263826                          0                 0 0
##      0.31263158525612                           0                 0 0
##      0.313581394222809                          0                 0 0
##      0.399450114450523                          0                 0 0
##      0.419739887455571                          0                 0 0
##      0.425358901761228                          0                 0 0
##      0.594035429893685                          0                 0 0
##      0.671638488556335                          0                 0 0
##      0.688092298985074                          0                 0 0
##      0.806600378227794                          0                 0 0
##      0.867455094638368                          0                 0 0
##      0.897003448844096                          0                 0 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 1.34930555555556 4.020833333 6.15
##      0.000000000123720820519974                0           0    0
##      0.0000000142143709248919                  0           0    0
##      0.0000000203570784591136                  0           0    0
##      0.0000000942663046181582                  0           0    0
##      0.0381424863643358                        0           0    0
##      0.0395235614826762                        0           0    0
##      0.0398504564629362                        0           0    0
##      0.0449831541922517                        0           0    0
##      0.150208567676068                         0           0    0
##      0.291704657263826                         0           0    0
##      0.31263158525612                          0           0    0
##      0.313581394222809                         0           0    0
##      0.399450114450523                         0           0    0
##      0.419739887455571                         0           0    0
##      0.425358901761228                         0           0    0
##      0.594035429893685                         0           0    0
##      0.671638488556335                         0           0    0
##      0.688092298985074                         0           0    0
##      0.806600378227794                         0           0    0
##      0.867455094638368                         0           0    0
##      0.897003448844096                         0           0    0
## 
## , , OTT_Time = 0.125, Snapchat_Time = 0.6208333333, Instagram_Time = 0.138888888888889
## 
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.125 0.142361111111111 0.152777777777778
##      0.000000000123720820519974     0                 0                 0
##      0.0000000142143709248919       0                 0                 0
##      0.0000000203570784591136       0                 0                 0
##      0.0000000942663046181582       0                 0                 0
##      0.0381424863643358             0                 0                 0
##      0.0395235614826762             0                 0                 0
##      0.0398504564629362             0                 0                 0
##      0.0449831541922517             0                 0                 0
##      0.150208567676068              0                 0                 0
##      0.291704657263826              0                 0                 0
##      0.31263158525612               0                 0                 0
##      0.313581394222809              0                 0                 0
##      0.399450114450523              0                 0                 0
##      0.419739887455571              0                 0                 0
##      0.425358901761228              0                 0                 0
##      0.594035429893685              0                 0                 0
##      0.671638488556335              0                 0                 0
##      0.688092298985074              0                 0                 0
##      0.806600378227794              0                 0                 0
##      0.867455094638368              0                 0                 0
##      0.897003448844096              0                 0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.174305555555556 0.208333333333333
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.220833333333333 0.25 0.270833333333333
##      0.000000000123720820519974                 0    0                 0
##      0.0000000142143709248919                   0    0                 0
##      0.0000000203570784591136                   0    0                 0
##      0.0000000942663046181582                   0    0                 0
##      0.0381424863643358                         0    0                 0
##      0.0395235614826762                         0    0                 0
##      0.0398504564629362                         0    0                 0
##      0.0449831541922517                         0    0                 0
##      0.150208567676068                          0    0                 0
##      0.291704657263826                          0    0                 0
##      0.31263158525612                           0    0                 0
##      0.313581394222809                          0    0                 0
##      0.399450114450523                          0    0                 0
##      0.419739887455571                          0    0                 0
##      0.425358901761228                          0    0                 0
##      0.594035429893685                          0    0                 0
##      0.671638488556335                          0    0                 0
##      0.688092298985074                          0    0                 0
##      0.806600378227794                          0    0                 0
##      0.867455094638368                          0    0                 0
##      0.897003448844096                          0    0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.289583333333333 0.371527777777778
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.409722222222222 0.416666666666667 0.5 0.55625
##      0.000000000123720820519974                 0                 0   0       0
##      0.0000000142143709248919                   0                 0   0       0
##      0.0000000203570784591136                   0                 0   0       0
##      0.0000000942663046181582                   0                 0   0       0
##      0.0381424863643358                         0                 0   0       0
##      0.0395235614826762                         0                 0   0       0
##      0.0398504564629362                         0                 0   0       0
##      0.0449831541922517                         0                 0   0       0
##      0.150208567676068                          0                 0   0       0
##      0.291704657263826                          0                 0   0       0
##      0.31263158525612                           0                 0   0       0
##      0.313581394222809                          0                 0   0       0
##      0.399450114450523                          0                 0   0       0
##      0.419739887455571                          0                 0   0       0
##      0.425358901761228                          0                 0   0       0
##      0.594035429893685                          0                 0   0       0
##      0.671638488556335                          0                 0   0       0
##      0.688092298985074                          0                 0   0       0
##      0.806600378227794                          0                 0   0       0
##      0.867455094638368                          0                 0   0       0
##      0.897003448844096                          0                 0   0       0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.639583333333333 0.907785087701754 1
##      0.000000000123720820519974                 0                 0 0
##      0.0000000142143709248919                   0                 0 0
##      0.0000000203570784591136                   0                 0 0
##      0.0000000942663046181582                   0                 0 0
##      0.0381424863643358                         0                 0 0
##      0.0395235614826762                         0                 0 0
##      0.0398504564629362                         0                 0 0
##      0.0449831541922517                         0                 0 0
##      0.150208567676068                          0                 0 0
##      0.291704657263826                          0                 0 0
##      0.31263158525612                           0                 0 0
##      0.313581394222809                          0                 0 0
##      0.399450114450523                          0                 0 0
##      0.419739887455571                          0                 0 0
##      0.425358901761228                          0                 0 0
##      0.594035429893685                          0                 0 0
##      0.671638488556335                          0                 0 0
##      0.688092298985074                          0                 0 0
##      0.806600378227794                          0                 0 0
##      0.867455094638368                          0                 0 0
##      0.897003448844096                          0                 0 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 1.34930555555556 4.020833333 6.15
##      0.000000000123720820519974                0           0    0
##      0.0000000142143709248919                  0           0    0
##      0.0000000203570784591136                  0           0    0
##      0.0000000942663046181582                  0           0    0
##      0.0381424863643358                        0           0    0
##      0.0395235614826762                        0           0    0
##      0.0398504564629362                        0           0    0
##      0.0449831541922517                        0           0    0
##      0.150208567676068                         0           0    0
##      0.291704657263826                         0           0    0
##      0.31263158525612                          0           0    0
##      0.313581394222809                         0           0    0
##      0.399450114450523                         0           0    0
##      0.419739887455571                         0           0    0
##      0.425358901761228                         0           0    0
##      0.594035429893685                         0           0    0
##      0.671638488556335                         0           0    0
##      0.688092298985074                         0           0    0
##      0.806600378227794                         0           0    0
##      0.867455094638368                         0           0    0
##      0.897003448844096                         0           0    0
## 
## , , OTT_Time = 0.416666666666667, Snapchat_Time = 0.6208333333, Instagram_Time = 0.138888888888889
## 
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.125 0.142361111111111 0.152777777777778
##      0.000000000123720820519974     0                 0                 0
##      0.0000000142143709248919       0                 0                 0
##      0.0000000203570784591136       0                 0                 0
##      0.0000000942663046181582       0                 0                 0
##      0.0381424863643358             0                 0                 0
##      0.0395235614826762             0                 0                 0
##      0.0398504564629362             0                 0                 0
##      0.0449831541922517             0                 0                 0
##      0.150208567676068              0                 0                 0
##      0.291704657263826              0                 0                 0
##      0.31263158525612               0                 0                 0
##      0.313581394222809              0                 0                 0
##      0.399450114450523              0                 0                 0
##      0.419739887455571              0                 0                 0
##      0.425358901761228              0                 0                 0
##      0.594035429893685              0                 0                 0
##      0.671638488556335              0                 0                 0
##      0.688092298985074              0                 0                 0
##      0.806600378227794              0                 0                 0
##      0.867455094638368              0                 0                 0
##      0.897003448844096              0                 0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.174305555555556 0.208333333333333
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.220833333333333 0.25 0.270833333333333
##      0.000000000123720820519974                 0    0                 0
##      0.0000000142143709248919                   0    0                 0
##      0.0000000203570784591136                   0    0                 0
##      0.0000000942663046181582                   0    0                 0
##      0.0381424863643358                         0    0                 0
##      0.0395235614826762                         0    0                 0
##      0.0398504564629362                         0    0                 0
##      0.0449831541922517                         0    0                 0
##      0.150208567676068                          0    0                 0
##      0.291704657263826                          0    0                 0
##      0.31263158525612                           0    0                 0
##      0.313581394222809                          0    0                 0
##      0.399450114450523                          0    0                 0
##      0.419739887455571                          0    0                 0
##      0.425358901761228                          0    0                 0
##      0.594035429893685                          0    0                 0
##      0.671638488556335                          0    0                 0
##      0.688092298985074                          0    0                 0
##      0.806600378227794                          0    0                 0
##      0.867455094638368                          0    0                 0
##      0.897003448844096                          0    0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.289583333333333 0.371527777777778
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.409722222222222 0.416666666666667 0.5 0.55625
##      0.000000000123720820519974                 0                 0   0       0
##      0.0000000142143709248919                   0                 0   0       0
##      0.0000000203570784591136                   0                 0   0       0
##      0.0000000942663046181582                   0                 0   0       0
##      0.0381424863643358                         0                 0   0       0
##      0.0395235614826762                         0                 0   0       0
##      0.0398504564629362                         0                 0   0       0
##      0.0449831541922517                         0                 0   0       0
##      0.150208567676068                          0                 0   0       0
##      0.291704657263826                          0                 0   0       0
##      0.31263158525612                           0                 0   0       0
##      0.313581394222809                          0                 0   0       0
##      0.399450114450523                          0                 0   0       0
##      0.419739887455571                          0                 0   0       0
##      0.425358901761228                          0                 0   0       0
##      0.594035429893685                          0                 0   0       0
##      0.671638488556335                          0                 0   0       0
##      0.688092298985074                          0                 0   0       0
##      0.806600378227794                          0                 0   0       0
##      0.867455094638368                          0                 0   0       0
##      0.897003448844096                          0                 0   0       0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.639583333333333 0.907785087701754 1
##      0.000000000123720820519974                 0                 0 0
##      0.0000000142143709248919                   0                 0 0
##      0.0000000203570784591136                   0                 0 0
##      0.0000000942663046181582                   0                 0 0
##      0.0381424863643358                         0                 0 0
##      0.0395235614826762                         0                 0 0
##      0.0398504564629362                         0                 0 0
##      0.0449831541922517                         0                 0 0
##      0.150208567676068                          0                 0 0
##      0.291704657263826                          0                 0 0
##      0.31263158525612                           0                 0 0
##      0.313581394222809                          0                 0 0
##      0.399450114450523                          0                 0 0
##      0.419739887455571                          0                 0 0
##      0.425358901761228                          0                 0 0
##      0.594035429893685                          0                 0 0
##      0.671638488556335                          0                 0 0
##      0.688092298985074                          0                 0 0
##      0.806600378227794                          0                 0 0
##      0.867455094638368                          0                 0 0
##      0.897003448844096                          0                 0 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 1.34930555555556 4.020833333 6.15
##      0.000000000123720820519974                0           0    0
##      0.0000000142143709248919                  0           0    0
##      0.0000000203570784591136                  0           0    0
##      0.0000000942663046181582                  0           0    0
##      0.0381424863643358                        0           0    0
##      0.0395235614826762                        0           0    0
##      0.0398504564629362                        0           0    0
##      0.0449831541922517                        0           0    0
##      0.150208567676068                         0           0    0
##      0.291704657263826                         0           0    0
##      0.31263158525612                          0           0    0
##      0.313581394222809                         0           0    0
##      0.399450114450523                         0           0    0
##      0.419739887455571                         0           0    0
##      0.425358901761228                         0           0    0
##      0.594035429893685                         0           0    0
##      0.671638488556335                         0           0    0
##      0.688092298985074                         0           0    0
##      0.806600378227794                         0           0    0
##      0.867455094638368                         0           0    0
##      0.897003448844096                         0           0    0
## 
## , , OTT_Time = 0.5104166667, Snapchat_Time = 0.6208333333, Instagram_Time = 0.138888888888889
## 
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.125 0.142361111111111 0.152777777777778
##      0.000000000123720820519974     0                 0                 0
##      0.0000000142143709248919       0                 0                 0
##      0.0000000203570784591136       0                 0                 0
##      0.0000000942663046181582       0                 0                 0
##      0.0381424863643358             0                 0                 0
##      0.0395235614826762             0                 0                 0
##      0.0398504564629362             0                 0                 0
##      0.0449831541922517             0                 0                 0
##      0.150208567676068              0                 0                 0
##      0.291704657263826              0                 0                 0
##      0.31263158525612               0                 0                 0
##      0.313581394222809              0                 0                 0
##      0.399450114450523              0                 0                 0
##      0.419739887455571              0                 0                 0
##      0.425358901761228              0                 0                 0
##      0.594035429893685              0                 0                 0
##      0.671638488556335              0                 0                 0
##      0.688092298985074              0                 0                 0
##      0.806600378227794              0                 0                 0
##      0.867455094638368              0                 0                 0
##      0.897003448844096              0                 0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.174305555555556 0.208333333333333
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.220833333333333 0.25 0.270833333333333
##      0.000000000123720820519974                 0    0                 0
##      0.0000000142143709248919                   0    0                 0
##      0.0000000203570784591136                   0    0                 0
##      0.0000000942663046181582                   0    0                 0
##      0.0381424863643358                         0    0                 0
##      0.0395235614826762                         0    0                 0
##      0.0398504564629362                         0    0                 0
##      0.0449831541922517                         0    0                 0
##      0.150208567676068                          0    0                 0
##      0.291704657263826                          0    0                 0
##      0.31263158525612                           0    0                 0
##      0.313581394222809                          0    0                 0
##      0.399450114450523                          0    0                 0
##      0.419739887455571                          0    0                 0
##      0.425358901761228                          0    0                 0
##      0.594035429893685                          0    0                 0
##      0.671638488556335                          0    0                 0
##      0.688092298985074                          0    0                 0
##      0.806600378227794                          0    0                 0
##      0.867455094638368                          0    0                 0
##      0.897003448844096                          0    0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.289583333333333 0.371527777777778
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.409722222222222 0.416666666666667 0.5 0.55625
##      0.000000000123720820519974                 0                 0   0       0
##      0.0000000142143709248919                   0                 0   0       0
##      0.0000000203570784591136                   0                 0   0       0
##      0.0000000942663046181582                   0                 0   0       0
##      0.0381424863643358                         0                 0   0       0
##      0.0395235614826762                         0                 0   0       0
##      0.0398504564629362                         0                 0   0       0
##      0.0449831541922517                         0                 0   0       0
##      0.150208567676068                          0                 0   0       0
##      0.291704657263826                          0                 0   0       0
##      0.31263158525612                           0                 0   0       0
##      0.313581394222809                          0                 0   0       0
##      0.399450114450523                          0                 0   0       0
##      0.419739887455571                          0                 0   0       0
##      0.425358901761228                          0                 0   0       0
##      0.594035429893685                          0                 0   0       0
##      0.671638488556335                          0                 0   0       0
##      0.688092298985074                          0                 0   0       0
##      0.806600378227794                          0                 0   0       0
##      0.867455094638368                          0                 0   0       0
##      0.897003448844096                          0                 0   0       0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.639583333333333 0.907785087701754 1
##      0.000000000123720820519974                 0                 0 0
##      0.0000000142143709248919                   0                 0 0
##      0.0000000203570784591136                   0                 0 0
##      0.0000000942663046181582                   0                 0 0
##      0.0381424863643358                         0                 0 0
##      0.0395235614826762                         0                 0 0
##      0.0398504564629362                         0                 0 0
##      0.0449831541922517                         0                 0 0
##      0.150208567676068                          0                 0 0
##      0.291704657263826                          0                 0 0
##      0.31263158525612                           0                 0 0
##      0.313581394222809                          0                 0 0
##      0.399450114450523                          0                 0 0
##      0.419739887455571                          0                 0 0
##      0.425358901761228                          0                 0 0
##      0.594035429893685                          0                 0 0
##      0.671638488556335                          0                 0 0
##      0.688092298985074                          0                 0 0
##      0.806600378227794                          0                 0 0
##      0.867455094638368                          0                 0 0
##      0.897003448844096                          0                 0 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 1.34930555555556 4.020833333 6.15
##      0.000000000123720820519974                0           0    0
##      0.0000000142143709248919                  0           0    0
##      0.0000000203570784591136                  0           0    0
##      0.0000000942663046181582                  0           0    0
##      0.0381424863643358                        0           0    0
##      0.0395235614826762                        0           0    0
##      0.0398504564629362                        0           0    0
##      0.0449831541922517                        0           0    0
##      0.150208567676068                         0           0    0
##      0.291704657263826                         0           0    0
##      0.31263158525612                          0           0    0
##      0.313581394222809                         0           0    0
##      0.399450114450523                         0           0    0
##      0.419739887455571                         0           0    0
##      0.425358901761228                         0           0    0
##      0.594035429893685                         0           0    0
##      0.671638488556335                         0           0    0
##      0.688092298985074                         0           0    0
##      0.806600378227794                         0           0    0
##      0.867455094638368                         0           0    0
##      0.897003448844096                         0           0    0
## 
## , , OTT_Time = 1.44460470085726, Snapchat_Time = 0.6208333333, Instagram_Time = 0.138888888888889
## 
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.125 0.142361111111111 0.152777777777778
##      0.000000000123720820519974     0                 0                 0
##      0.0000000142143709248919       0                 0                 0
##      0.0000000203570784591136       0                 0                 0
##      0.0000000942663046181582       0                 0                 0
##      0.0381424863643358             0                 0                 0
##      0.0395235614826762             0                 0                 0
##      0.0398504564629362             0                 0                 0
##      0.0449831541922517             0                 0                 0
##      0.150208567676068              0                 0                 0
##      0.291704657263826              0                 0                 0
##      0.31263158525612               0                 0                 0
##      0.313581394222809              0                 0                 0
##      0.399450114450523              0                 0                 0
##      0.419739887455571              0                 0                 0
##      0.425358901761228              0                 0                 0
##      0.594035429893685              0                 0                 0
##      0.671638488556335              0                 0                 0
##      0.688092298985074              0                 0                 0
##      0.806600378227794              0                 0                 0
##      0.867455094638368              0                 0                 0
##      0.897003448844096              0                 0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.174305555555556 0.208333333333333
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.220833333333333 0.25 0.270833333333333
##      0.000000000123720820519974                 0    0                 0
##      0.0000000142143709248919                   0    0                 0
##      0.0000000203570784591136                   0    0                 0
##      0.0000000942663046181582                   0    0                 0
##      0.0381424863643358                         0    0                 0
##      0.0395235614826762                         0    0                 0
##      0.0398504564629362                         0    0                 0
##      0.0449831541922517                         0    0                 0
##      0.150208567676068                          0    0                 0
##      0.291704657263826                          0    0                 0
##      0.31263158525612                           0    0                 0
##      0.313581394222809                          0    0                 0
##      0.399450114450523                          0    0                 0
##      0.419739887455571                          0    0                 0
##      0.425358901761228                          0    0                 0
##      0.594035429893685                          0    0                 0
##      0.671638488556335                          0    0                 0
##      0.688092298985074                          0    0                 0
##      0.806600378227794                          0    0                 0
##      0.867455094638368                          0    0                 0
##      0.897003448844096                          0    0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.289583333333333 0.371527777777778
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.409722222222222 0.416666666666667 0.5 0.55625
##      0.000000000123720820519974                 0                 0   0       0
##      0.0000000142143709248919                   0                 0   0       0
##      0.0000000203570784591136                   0                 0   0       0
##      0.0000000942663046181582                   0                 0   0       0
##      0.0381424863643358                         0                 0   0       0
##      0.0395235614826762                         0                 0   0       0
##      0.0398504564629362                         0                 0   0       0
##      0.0449831541922517                         0                 0   0       0
##      0.150208567676068                          0                 0   0       0
##      0.291704657263826                          0                 0   0       0
##      0.31263158525612                           0                 0   0       0
##      0.313581394222809                          0                 0   0       0
##      0.399450114450523                          0                 0   0       0
##      0.419739887455571                          0                 0   0       0
##      0.425358901761228                          0                 0   0       0
##      0.594035429893685                          0                 0   0       0
##      0.671638488556335                          0                 0   0       0
##      0.688092298985074                          0                 0   0       0
##      0.806600378227794                          0                 0   0       0
##      0.867455094638368                          0                 0   0       0
##      0.897003448844096                          0                 0   0       0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.639583333333333 0.907785087701754 1
##      0.000000000123720820519974                 0                 0 0
##      0.0000000142143709248919                   0                 0 0
##      0.0000000203570784591136                   0                 0 0
##      0.0000000942663046181582                   0                 0 0
##      0.0381424863643358                         0                 0 0
##      0.0395235614826762                         0                 0 0
##      0.0398504564629362                         0                 0 0
##      0.0449831541922517                         0                 0 0
##      0.150208567676068                          0                 0 0
##      0.291704657263826                          0                 0 0
##      0.31263158525612                           0                 0 0
##      0.313581394222809                          0                 0 0
##      0.399450114450523                          0                 0 0
##      0.419739887455571                          0                 0 0
##      0.425358901761228                          0                 0 0
##      0.594035429893685                          0                 0 0
##      0.671638488556335                          0                 0 0
##      0.688092298985074                          0                 0 0
##      0.806600378227794                          0                 0 0
##      0.867455094638368                          0                 0 0
##      0.897003448844096                          0                 0 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 1.34930555555556 4.020833333 6.15
##      0.000000000123720820519974                0           0    0
##      0.0000000142143709248919                  0           0    0
##      0.0000000203570784591136                  0           0    0
##      0.0000000942663046181582                  0           0    0
##      0.0381424863643358                        0           0    0
##      0.0395235614826762                        0           0    0
##      0.0398504564629362                        0           0    0
##      0.0449831541922517                        0           0    0
##      0.150208567676068                         0           0    0
##      0.291704657263826                         0           0    0
##      0.31263158525612                          0           0    0
##      0.313581394222809                         0           0    0
##      0.399450114450523                         0           0    0
##      0.419739887455571                         0           0    0
##      0.425358901761228                         0           0    0
##      0.594035429893685                         0           0    0
##      0.671638488556335                         0           0    0
##      0.688092298985074                         0           0    0
##      0.806600378227794                         0           0    0
##      0.867455094638368                         0           0    0
##      0.897003448844096                         0           0    0
## 
## , , OTT_Time = 3, Snapchat_Time = 0.6208333333, Instagram_Time = 0.138888888888889
## 
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.125 0.142361111111111 0.152777777777778
##      0.000000000123720820519974     0                 0                 0
##      0.0000000142143709248919       0                 0                 0
##      0.0000000203570784591136       0                 0                 0
##      0.0000000942663046181582       0                 0                 0
##      0.0381424863643358             0                 0                 0
##      0.0395235614826762             0                 0                 0
##      0.0398504564629362             0                 0                 0
##      0.0449831541922517             0                 0                 0
##      0.150208567676068              0                 0                 0
##      0.291704657263826              0                 0                 0
##      0.31263158525612               0                 0                 0
##      0.313581394222809              0                 0                 0
##      0.399450114450523              0                 0                 0
##      0.419739887455571              0                 0                 0
##      0.425358901761228              0                 0                 0
##      0.594035429893685              0                 0                 0
##      0.671638488556335              0                 0                 0
##      0.688092298985074              0                 0                 0
##      0.806600378227794              0                 0                 0
##      0.867455094638368              0                 0                 0
##      0.897003448844096              0                 0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.174305555555556 0.208333333333333
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.220833333333333 0.25 0.270833333333333
##      0.000000000123720820519974                 0    0                 0
##      0.0000000142143709248919                   0    0                 0
##      0.0000000203570784591136                   0    0                 0
##      0.0000000942663046181582                   0    0                 0
##      0.0381424863643358                         0    0                 0
##      0.0395235614826762                         0    0                 0
##      0.0398504564629362                         0    0                 0
##      0.0449831541922517                         0    0                 0
##      0.150208567676068                          0    0                 0
##      0.291704657263826                          0    0                 0
##      0.31263158525612                           0    0                 0
##      0.313581394222809                          0    0                 0
##      0.399450114450523                          0    0                 0
##      0.419739887455571                          0    0                 0
##      0.425358901761228                          0    0                 0
##      0.594035429893685                          0    0                 0
##      0.671638488556335                          0    0                 0
##      0.688092298985074                          0    0                 0
##      0.806600378227794                          0    0                 0
##      0.867455094638368                          0    0                 0
##      0.897003448844096                          0    0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.289583333333333 0.371527777777778
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.409722222222222 0.416666666666667 0.5 0.55625
##      0.000000000123720820519974                 0                 0   0       0
##      0.0000000142143709248919                   0                 0   0       0
##      0.0000000203570784591136                   0                 0   0       0
##      0.0000000942663046181582                   0                 0   0       0
##      0.0381424863643358                         0                 0   0       0
##      0.0395235614826762                         0                 0   0       0
##      0.0398504564629362                         0                 0   0       0
##      0.0449831541922517                         0                 0   0       0
##      0.150208567676068                          0                 0   0       0
##      0.291704657263826                          0                 0   0       0
##      0.31263158525612                           0                 0   0       0
##      0.313581394222809                          0                 0   0       0
##      0.399450114450523                          0                 0   0       0
##      0.419739887455571                          0                 0   0       0
##      0.425358901761228                          0                 0   0       0
##      0.594035429893685                          0                 0   0       0
##      0.671638488556335                          0                 0   0       0
##      0.688092298985074                          0                 0   0       0
##      0.806600378227794                          0                 0   0       0
##      0.867455094638368                          0                 0   0       0
##      0.897003448844096                          0                 0   0       0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.639583333333333 0.907785087701754 1
##      0.000000000123720820519974                 0                 0 0
##      0.0000000142143709248919                   0                 0 0
##      0.0000000203570784591136                   0                 0 0
##      0.0000000942663046181582                   0                 0 0
##      0.0381424863643358                         0                 0 0
##      0.0395235614826762                         0                 0 0
##      0.0398504564629362                         0                 0 0
##      0.0449831541922517                         0                 0 0
##      0.150208567676068                          0                 0 0
##      0.291704657263826                          0                 0 0
##      0.31263158525612                           0                 0 0
##      0.313581394222809                          0                 0 0
##      0.399450114450523                          0                 0 0
##      0.419739887455571                          0                 0 0
##      0.425358901761228                          0                 0 0
##      0.594035429893685                          0                 0 0
##      0.671638488556335                          0                 0 0
##      0.688092298985074                          0                 0 0
##      0.806600378227794                          0                 0 0
##      0.867455094638368                          0                 0 0
##      0.897003448844096                          0                 0 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 1.34930555555556 4.020833333 6.15
##      0.000000000123720820519974                0           0    0
##      0.0000000142143709248919                  0           0    0
##      0.0000000203570784591136                  0           0    0
##      0.0000000942663046181582                  0           0    0
##      0.0381424863643358                        0           0    0
##      0.0395235614826762                        0           0    0
##      0.0398504564629362                        0           0    0
##      0.0449831541922517                        0           0    0
##      0.150208567676068                         0           0    0
##      0.291704657263826                         0           0    0
##      0.31263158525612                          0           0    0
##      0.313581394222809                         0           0    0
##      0.399450114450523                         0           0    0
##      0.419739887455571                         0           0    0
##      0.425358901761228                         0           0    0
##      0.594035429893685                         0           0    0
##      0.671638488556335                         0           0    0
##      0.688092298985074                         0           0    0
##      0.806600378227794                         0           0    0
##      0.867455094638368                         0           0    0
##      0.897003448844096                         0           0    0
## 
## , , OTT_Time = 14.5, Snapchat_Time = 0.6208333333, Instagram_Time = 0.138888888888889
## 
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.125 0.142361111111111 0.152777777777778
##      0.000000000123720820519974     0                 0                 0
##      0.0000000142143709248919       0                 0                 0
##      0.0000000203570784591136       0                 0                 0
##      0.0000000942663046181582       0                 0                 0
##      0.0381424863643358             0                 0                 0
##      0.0395235614826762             0                 0                 0
##      0.0398504564629362             0                 0                 0
##      0.0449831541922517             0                 0                 0
##      0.150208567676068              0                 0                 0
##      0.291704657263826              0                 0                 0
##      0.31263158525612               0                 0                 0
##      0.313581394222809              0                 0                 0
##      0.399450114450523              0                 0                 0
##      0.419739887455571              0                 0                 0
##      0.425358901761228              0                 0                 0
##      0.594035429893685              0                 0                 0
##      0.671638488556335              0                 0                 0
##      0.688092298985074              0                 0                 0
##      0.806600378227794              0                 0                 0
##      0.867455094638368              0                 0                 0
##      0.897003448844096              0                 0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.174305555555556 0.208333333333333
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.220833333333333 0.25 0.270833333333333
##      0.000000000123720820519974                 0    0                 0
##      0.0000000142143709248919                   0    0                 0
##      0.0000000203570784591136                   0    0                 0
##      0.0000000942663046181582                   0    0                 0
##      0.0381424863643358                         0    0                 0
##      0.0395235614826762                         0    0                 0
##      0.0398504564629362                         0    0                 0
##      0.0449831541922517                         0    0                 0
##      0.150208567676068                          0    0                 0
##      0.291704657263826                          0    0                 0
##      0.31263158525612                           0    0                 0
##      0.313581394222809                          0    0                 0
##      0.399450114450523                          0    0                 0
##      0.419739887455571                          0    0                 0
##      0.425358901761228                          0    0                 0
##      0.594035429893685                          0    0                 0
##      0.671638488556335                          0    0                 0
##      0.688092298985074                          0    0                 0
##      0.806600378227794                          0    0                 0
##      0.867455094638368                          0    0                 0
##      0.897003448844096                          0    0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.289583333333333 0.371527777777778
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.409722222222222 0.416666666666667 0.5 0.55625
##      0.000000000123720820519974                 0                 0   0       0
##      0.0000000142143709248919                   0                 0   0       0
##      0.0000000203570784591136                   0                 0   0       0
##      0.0000000942663046181582                   0                 0   0       0
##      0.0381424863643358                         0                 0   0       0
##      0.0395235614826762                         0                 0   0       0
##      0.0398504564629362                         0                 0   0       0
##      0.0449831541922517                         0                 0   0       0
##      0.150208567676068                          0                 0   0       0
##      0.291704657263826                          0                 0   0       0
##      0.31263158525612                           0                 0   0       0
##      0.313581394222809                          0                 0   0       0
##      0.399450114450523                          0                 0   0       0
##      0.419739887455571                          0                 0   0       0
##      0.425358901761228                          0                 0   0       0
##      0.594035429893685                          0                 0   0       0
##      0.671638488556335                          0                 0   0       0
##      0.688092298985074                          0                 0   0       0
##      0.806600378227794                          0                 0   0       0
##      0.867455094638368                          0                 0   0       0
##      0.897003448844096                          0                 0   0       0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.639583333333333 0.907785087701754 1
##      0.000000000123720820519974                 0                 0 0
##      0.0000000142143709248919                   0                 0 0
##      0.0000000203570784591136                   0                 0 0
##      0.0000000942663046181582                   0                 0 0
##      0.0381424863643358                         0                 0 0
##      0.0395235614826762                         0                 0 0
##      0.0398504564629362                         0                 0 0
##      0.0449831541922517                         0                 0 0
##      0.150208567676068                          0                 0 0
##      0.291704657263826                          0                 0 0
##      0.31263158525612                           0                 0 0
##      0.313581394222809                          0                 0 0
##      0.399450114450523                          0                 0 0
##      0.419739887455571                          0                 0 0
##      0.425358901761228                          0                 0 0
##      0.594035429893685                          0                 0 0
##      0.671638488556335                          0                 0 0
##      0.688092298985074                          0                 0 0
##      0.806600378227794                          0                 0 0
##      0.867455094638368                          0                 0 0
##      0.897003448844096                          0                 0 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 1.34930555555556 4.020833333 6.15
##      0.000000000123720820519974                0           0    0
##      0.0000000142143709248919                  0           0    0
##      0.0000000203570784591136                  0           0    0
##      0.0000000942663046181582                  0           0    0
##      0.0381424863643358                        0           0    0
##      0.0395235614826762                        0           0    0
##      0.0398504564629362                        0           0    0
##      0.0449831541922517                        0           0    0
##      0.150208567676068                         0           0    0
##      0.291704657263826                         0           0    0
##      0.31263158525612                          0           0    0
##      0.313581394222809                         0           0    0
##      0.399450114450523                         0           0    0
##      0.419739887455571                         0           0    0
##      0.425358901761228                         0           0    0
##      0.594035429893685                         0           0    0
##      0.671638488556335                         0           0    0
##      0.688092298985074                         0           0    0
##      0.806600378227794                         0           0    0
##      0.867455094638368                         0           0    0
##      0.897003448844096                         0           0    0
## 
## , , OTT_Time = 0, Snapchat_Time = 1, Instagram_Time = 0.138888888888889
## 
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.125 0.142361111111111 0.152777777777778
##      0.000000000123720820519974     0                 0                 0
##      0.0000000142143709248919       0                 0                 0
##      0.0000000203570784591136       0                 0                 0
##      0.0000000942663046181582       0                 0                 0
##      0.0381424863643358             0                 0                 0
##      0.0395235614826762             0                 0                 0
##      0.0398504564629362             0                 0                 0
##      0.0449831541922517             0                 0                 0
##      0.150208567676068              0                 0                 0
##      0.291704657263826              0                 0                 0
##      0.31263158525612               0                 0                 0
##      0.313581394222809              0                 0                 0
##      0.399450114450523              0                 0                 0
##      0.419739887455571              0                 0                 0
##      0.425358901761228              0                 0                 0
##      0.594035429893685              0                 0                 0
##      0.671638488556335              0                 0                 0
##      0.688092298985074              0                 0                 0
##      0.806600378227794              0                 0                 0
##      0.867455094638368              0                 0                 0
##      0.897003448844096              0                 0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.174305555555556 0.208333333333333
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.220833333333333 0.25 0.270833333333333
##      0.000000000123720820519974                 0    0                 0
##      0.0000000142143709248919                   0    0                 0
##      0.0000000203570784591136                   0    0                 0
##      0.0000000942663046181582                   0    0                 0
##      0.0381424863643358                         0    0                 0
##      0.0395235614826762                         0    0                 0
##      0.0398504564629362                         0    0                 0
##      0.0449831541922517                         0    0                 0
##      0.150208567676068                          0    0                 0
##      0.291704657263826                          0    0                 0
##      0.31263158525612                           0    0                 0
##      0.313581394222809                          0    0                 0
##      0.399450114450523                          0    0                 0
##      0.419739887455571                          0    0                 0
##      0.425358901761228                          0    0                 0
##      0.594035429893685                          0    0                 0
##      0.671638488556335                          0    0                 0
##      0.688092298985074                          0    0                 0
##      0.806600378227794                          0    0                 0
##      0.867455094638368                          0    0                 0
##      0.897003448844096                          0    0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.289583333333333 0.371527777777778
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.409722222222222 0.416666666666667 0.5 0.55625
##      0.000000000123720820519974                 0                 0   0       0
##      0.0000000142143709248919                   0                 0   0       0
##      0.0000000203570784591136                   0                 0   0       0
##      0.0000000942663046181582                   0                 0   0       0
##      0.0381424863643358                         0                 0   0       0
##      0.0395235614826762                         0                 0   0       0
##      0.0398504564629362                         0                 0   0       0
##      0.0449831541922517                         0                 0   0       0
##      0.150208567676068                          0                 0   0       0
##      0.291704657263826                          0                 0   0       0
##      0.31263158525612                           0                 0   0       0
##      0.313581394222809                          0                 0   0       0
##      0.399450114450523                          0                 0   0       0
##      0.419739887455571                          0                 0   0       0
##      0.425358901761228                          0                 0   0       0
##      0.594035429893685                          0                 0   0       0
##      0.671638488556335                          0                 0   0       0
##      0.688092298985074                          0                 0   0       0
##      0.806600378227794                          0                 0   0       0
##      0.867455094638368                          0                 0   0       0
##      0.897003448844096                          0                 0   0       0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.639583333333333 0.907785087701754 1
##      0.000000000123720820519974                 0                 0 0
##      0.0000000142143709248919                   0                 0 0
##      0.0000000203570784591136                   0                 0 0
##      0.0000000942663046181582                   0                 0 0
##      0.0381424863643358                         0                 0 0
##      0.0395235614826762                         0                 0 0
##      0.0398504564629362                         0                 0 0
##      0.0449831541922517                         0                 0 0
##      0.150208567676068                          0                 0 0
##      0.291704657263826                          0                 0 0
##      0.31263158525612                           0                 0 0
##      0.313581394222809                          0                 0 0
##      0.399450114450523                          0                 0 0
##      0.419739887455571                          0                 0 0
##      0.425358901761228                          0                 0 0
##      0.594035429893685                          0                 0 0
##      0.671638488556335                          0                 0 0
##      0.688092298985074                          0                 0 0
##      0.806600378227794                          0                 0 0
##      0.867455094638368                          0                 0 0
##      0.897003448844096                          0                 0 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 1.34930555555556 4.020833333 6.15
##      0.000000000123720820519974                0           0    0
##      0.0000000142143709248919                  0           0    0
##      0.0000000203570784591136                  0           0    0
##      0.0000000942663046181582                  0           0    0
##      0.0381424863643358                        0           0    0
##      0.0395235614826762                        0           0    0
##      0.0398504564629362                        0           0    0
##      0.0449831541922517                        0           0    0
##      0.150208567676068                         0           0    0
##      0.291704657263826                         0           0    0
##      0.31263158525612                          0           0    0
##      0.313581394222809                         0           0    0
##      0.399450114450523                         0           0    0
##      0.419739887455571                         0           0    0
##      0.425358901761228                         0           0    0
##      0.594035429893685                         0           0    0
##      0.671638488556335                         0           0    0
##      0.688092298985074                         0           0    0
##      0.806600378227794                         0           0    0
##      0.867455094638368                         0           0    0
##      0.897003448844096                         0           0    0
## 
## , , OTT_Time = 0.102777777777778, Snapchat_Time = 1, Instagram_Time = 0.138888888888889
## 
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.125 0.142361111111111 0.152777777777778
##      0.000000000123720820519974     0                 0                 0
##      0.0000000142143709248919       0                 0                 0
##      0.0000000203570784591136       0                 0                 0
##      0.0000000942663046181582       0                 0                 0
##      0.0381424863643358             0                 0                 0
##      0.0395235614826762             0                 0                 0
##      0.0398504564629362             0                 0                 0
##      0.0449831541922517             0                 0                 0
##      0.150208567676068              0                 0                 0
##      0.291704657263826              0                 0                 0
##      0.31263158525612               0                 0                 0
##      0.313581394222809              0                 0                 0
##      0.399450114450523              0                 0                 0
##      0.419739887455571              0                 0                 0
##      0.425358901761228              0                 0                 0
##      0.594035429893685              0                 0                 0
##      0.671638488556335              0                 0                 0
##      0.688092298985074              0                 0                 0
##      0.806600378227794              0                 0                 0
##      0.867455094638368              0                 0                 0
##      0.897003448844096              0                 0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.174305555555556 0.208333333333333
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.220833333333333 0.25 0.270833333333333
##      0.000000000123720820519974                 0    0                 0
##      0.0000000142143709248919                   0    0                 0
##      0.0000000203570784591136                   0    0                 0
##      0.0000000942663046181582                   0    0                 0
##      0.0381424863643358                         0    0                 0
##      0.0395235614826762                         0    0                 0
##      0.0398504564629362                         0    0                 0
##      0.0449831541922517                         0    0                 0
##      0.150208567676068                          0    0                 0
##      0.291704657263826                          0    0                 0
##      0.31263158525612                           0    0                 0
##      0.313581394222809                          0    0                 0
##      0.399450114450523                          0    0                 0
##      0.419739887455571                          0    0                 0
##      0.425358901761228                          0    0                 0
##      0.594035429893685                          0    0                 0
##      0.671638488556335                          0    0                 0
##      0.688092298985074                          0    0                 0
##      0.806600378227794                          0    0                 0
##      0.867455094638368                          0    0                 0
##      0.897003448844096                          0    0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.289583333333333 0.371527777777778
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.409722222222222 0.416666666666667 0.5 0.55625
##      0.000000000123720820519974                 0                 0   0       0
##      0.0000000142143709248919                   0                 0   0       0
##      0.0000000203570784591136                   0                 0   0       0
##      0.0000000942663046181582                   0                 0   0       0
##      0.0381424863643358                         0                 0   0       0
##      0.0395235614826762                         0                 0   0       0
##      0.0398504564629362                         0                 0   0       0
##      0.0449831541922517                         0                 0   0       0
##      0.150208567676068                          0                 0   0       0
##      0.291704657263826                          0                 0   0       0
##      0.31263158525612                           0                 0   0       0
##      0.313581394222809                          0                 0   0       0
##      0.399450114450523                          0                 0   0       0
##      0.419739887455571                          0                 0   0       0
##      0.425358901761228                          0                 0   0       0
##      0.594035429893685                          0                 0   0       0
##      0.671638488556335                          0                 0   0       0
##      0.688092298985074                          0                 0   0       0
##      0.806600378227794                          0                 0   0       0
##      0.867455094638368                          0                 0   0       0
##      0.897003448844096                          0                 0   0       0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.639583333333333 0.907785087701754 1
##      0.000000000123720820519974                 0                 0 0
##      0.0000000142143709248919                   0                 0 0
##      0.0000000203570784591136                   0                 0 0
##      0.0000000942663046181582                   0                 0 0
##      0.0381424863643358                         0                 0 0
##      0.0395235614826762                         0                 0 0
##      0.0398504564629362                         0                 0 0
##      0.0449831541922517                         0                 0 0
##      0.150208567676068                          0                 0 0
##      0.291704657263826                          0                 0 0
##      0.31263158525612                           0                 0 0
##      0.313581394222809                          0                 0 0
##      0.399450114450523                          0                 0 0
##      0.419739887455571                          0                 0 0
##      0.425358901761228                          0                 0 0
##      0.594035429893685                          0                 0 0
##      0.671638488556335                          0                 0 0
##      0.688092298985074                          0                 0 0
##      0.806600378227794                          0                 0 0
##      0.867455094638368                          0                 0 0
##      0.897003448844096                          0                 0 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 1.34930555555556 4.020833333 6.15
##      0.000000000123720820519974                0           0    0
##      0.0000000142143709248919                  0           0    0
##      0.0000000203570784591136                  0           0    0
##      0.0000000942663046181582                  0           0    0
##      0.0381424863643358                        0           0    0
##      0.0395235614826762                        0           0    0
##      0.0398504564629362                        0           0    0
##      0.0449831541922517                        0           0    0
##      0.150208567676068                         0           0    0
##      0.291704657263826                         0           0    0
##      0.31263158525612                          0           0    0
##      0.313581394222809                         0           0    0
##      0.399450114450523                         0           0    0
##      0.419739887455571                         0           0    0
##      0.425358901761228                         0           0    0
##      0.594035429893685                         0           0    0
##      0.671638488556335                         0           0    0
##      0.688092298985074                         0           0    0
##      0.806600378227794                         0           0    0
##      0.867455094638368                         0           0    0
##      0.897003448844096                         0           0    0
## 
## , , OTT_Time = 0.125, Snapchat_Time = 1, Instagram_Time = 0.138888888888889
## 
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.125 0.142361111111111 0.152777777777778
##      0.000000000123720820519974     0                 0                 0
##      0.0000000142143709248919       0                 0                 0
##      0.0000000203570784591136       0                 0                 0
##      0.0000000942663046181582       0                 0                 0
##      0.0381424863643358             0                 0                 0
##      0.0395235614826762             0                 0                 0
##      0.0398504564629362             0                 0                 0
##      0.0449831541922517             0                 0                 0
##      0.150208567676068              0                 0                 0
##      0.291704657263826              0                 0                 0
##      0.31263158525612               0                 0                 0
##      0.313581394222809              0                 0                 0
##      0.399450114450523              0                 0                 0
##      0.419739887455571              0                 0                 0
##      0.425358901761228              0                 0                 0
##      0.594035429893685              0                 0                 0
##      0.671638488556335              0                 0                 0
##      0.688092298985074              0                 0                 0
##      0.806600378227794              0                 0                 0
##      0.867455094638368              0                 0                 0
##      0.897003448844096              0                 0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.174305555555556 0.208333333333333
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.220833333333333 0.25 0.270833333333333
##      0.000000000123720820519974                 0    0                 0
##      0.0000000142143709248919                   0    0                 0
##      0.0000000203570784591136                   0    0                 0
##      0.0000000942663046181582                   0    0                 0
##      0.0381424863643358                         0    0                 0
##      0.0395235614826762                         0    0                 0
##      0.0398504564629362                         0    0                 0
##      0.0449831541922517                         0    0                 0
##      0.150208567676068                          0    0                 0
##      0.291704657263826                          0    0                 0
##      0.31263158525612                           0    0                 0
##      0.313581394222809                          0    0                 0
##      0.399450114450523                          0    0                 0
##      0.419739887455571                          0    0                 0
##      0.425358901761228                          0    0                 0
##      0.594035429893685                          0    0                 0
##      0.671638488556335                          0    0                 0
##      0.688092298985074                          0    0                 0
##      0.806600378227794                          0    0                 0
##      0.867455094638368                          0    0                 0
##      0.897003448844096                          0    0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.289583333333333 0.371527777777778
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.409722222222222 0.416666666666667 0.5 0.55625
##      0.000000000123720820519974                 0                 0   0       0
##      0.0000000142143709248919                   0                 0   0       0
##      0.0000000203570784591136                   0                 0   0       0
##      0.0000000942663046181582                   0                 0   0       0
##      0.0381424863643358                         0                 0   0       0
##      0.0395235614826762                         0                 0   0       0
##      0.0398504564629362                         0                 0   0       0
##      0.0449831541922517                         0                 0   0       0
##      0.150208567676068                          0                 0   0       0
##      0.291704657263826                          0                 0   0       0
##      0.31263158525612                           0                 0   0       0
##      0.313581394222809                          0                 0   0       0
##      0.399450114450523                          0                 0   0       0
##      0.419739887455571                          0                 0   0       0
##      0.425358901761228                          0                 0   0       0
##      0.594035429893685                          0                 0   0       0
##      0.671638488556335                          0                 0   0       0
##      0.688092298985074                          0                 0   0       0
##      0.806600378227794                          0                 0   0       0
##      0.867455094638368                          0                 0   0       0
##      0.897003448844096                          0                 0   0       0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.639583333333333 0.907785087701754 1
##      0.000000000123720820519974                 0                 0 0
##      0.0000000142143709248919                   0                 0 0
##      0.0000000203570784591136                   0                 0 0
##      0.0000000942663046181582                   0                 0 0
##      0.0381424863643358                         0                 0 0
##      0.0395235614826762                         0                 0 0
##      0.0398504564629362                         0                 0 0
##      0.0449831541922517                         0                 0 0
##      0.150208567676068                          0                 0 0
##      0.291704657263826                          0                 0 0
##      0.31263158525612                           0                 0 0
##      0.313581394222809                          0                 0 0
##      0.399450114450523                          0                 0 0
##      0.419739887455571                          0                 0 0
##      0.425358901761228                          0                 0 0
##      0.594035429893685                          0                 0 0
##      0.671638488556335                          0                 0 0
##      0.688092298985074                          0                 0 0
##      0.806600378227794                          0                 0 0
##      0.867455094638368                          0                 0 0
##      0.897003448844096                          0                 0 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 1.34930555555556 4.020833333 6.15
##      0.000000000123720820519974                0           0    0
##      0.0000000142143709248919                  0           0    0
##      0.0000000203570784591136                  0           0    0
##      0.0000000942663046181582                  0           0    0
##      0.0381424863643358                        0           0    0
##      0.0395235614826762                        0           0    0
##      0.0398504564629362                        0           0    0
##      0.0449831541922517                        0           0    0
##      0.150208567676068                         0           0    0
##      0.291704657263826                         0           0    0
##      0.31263158525612                          0           0    0
##      0.313581394222809                         0           0    0
##      0.399450114450523                         0           0    0
##      0.419739887455571                         0           0    0
##      0.425358901761228                         0           0    0
##      0.594035429893685                         0           0    0
##      0.671638488556335                         0           0    0
##      0.688092298985074                         0           0    0
##      0.806600378227794                         0           0    0
##      0.867455094638368                         0           0    0
##      0.897003448844096                         0           0    0
## 
## , , OTT_Time = 0.416666666666667, Snapchat_Time = 1, Instagram_Time = 0.138888888888889
## 
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.125 0.142361111111111 0.152777777777778
##      0.000000000123720820519974     0                 0                 0
##      0.0000000142143709248919       0                 0                 0
##      0.0000000203570784591136       0                 0                 0
##      0.0000000942663046181582       0                 0                 0
##      0.0381424863643358             0                 0                 0
##      0.0395235614826762             0                 0                 0
##      0.0398504564629362             0                 0                 0
##      0.0449831541922517             0                 0                 0
##      0.150208567676068              0                 0                 0
##      0.291704657263826              0                 0                 0
##      0.31263158525612               0                 0                 0
##      0.313581394222809              0                 0                 0
##      0.399450114450523              0                 0                 0
##      0.419739887455571              0                 0                 0
##      0.425358901761228              0                 0                 0
##      0.594035429893685              0                 0                 0
##      0.671638488556335              0                 0                 0
##      0.688092298985074              0                 0                 0
##      0.806600378227794              0                 0                 0
##      0.867455094638368              0                 0                 0
##      0.897003448844096              0                 0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.174305555555556 0.208333333333333
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.220833333333333 0.25 0.270833333333333
##      0.000000000123720820519974                 0    0                 0
##      0.0000000142143709248919                   0    0                 0
##      0.0000000203570784591136                   0    0                 0
##      0.0000000942663046181582                   0    0                 0
##      0.0381424863643358                         0    0                 0
##      0.0395235614826762                         0    0                 0
##      0.0398504564629362                         0    0                 0
##      0.0449831541922517                         0    0                 0
##      0.150208567676068                          0    0                 0
##      0.291704657263826                          0    0                 0
##      0.31263158525612                           0    0                 0
##      0.313581394222809                          0    0                 0
##      0.399450114450523                          0    0                 0
##      0.419739887455571                          0    0                 0
##      0.425358901761228                          0    0                 0
##      0.594035429893685                          0    0                 0
##      0.671638488556335                          0    0                 0
##      0.688092298985074                          0    0                 0
##      0.806600378227794                          0    0                 0
##      0.867455094638368                          0    0                 0
##      0.897003448844096                          0    0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.289583333333333 0.371527777777778
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.409722222222222 0.416666666666667 0.5 0.55625
##      0.000000000123720820519974                 0                 0   0       0
##      0.0000000142143709248919                   0                 0   0       0
##      0.0000000203570784591136                   0                 0   0       0
##      0.0000000942663046181582                   0                 0   0       0
##      0.0381424863643358                         0                 0   0       0
##      0.0395235614826762                         0                 0   0       0
##      0.0398504564629362                         0                 0   0       0
##      0.0449831541922517                         0                 0   0       0
##      0.150208567676068                          0                 0   0       0
##      0.291704657263826                          0                 0   0       0
##      0.31263158525612                           0                 0   0       0
##      0.313581394222809                          0                 0   0       0
##      0.399450114450523                          0                 0   0       0
##      0.419739887455571                          0                 0   0       0
##      0.425358901761228                          0                 0   0       0
##      0.594035429893685                          0                 0   0       0
##      0.671638488556335                          0                 0   0       0
##      0.688092298985074                          0                 0   0       0
##      0.806600378227794                          0                 0   0       0
##      0.867455094638368                          0                 0   0       0
##      0.897003448844096                          0                 0   0       0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.639583333333333 0.907785087701754 1
##      0.000000000123720820519974                 0                 0 0
##      0.0000000142143709248919                   0                 0 0
##      0.0000000203570784591136                   0                 0 0
##      0.0000000942663046181582                   0                 0 0
##      0.0381424863643358                         0                 0 0
##      0.0395235614826762                         0                 0 0
##      0.0398504564629362                         0                 0 0
##      0.0449831541922517                         0                 0 0
##      0.150208567676068                          0                 0 0
##      0.291704657263826                          0                 0 0
##      0.31263158525612                           0                 0 0
##      0.313581394222809                          0                 0 0
##      0.399450114450523                          0                 0 0
##      0.419739887455571                          0                 0 0
##      0.425358901761228                          0                 0 0
##      0.594035429893685                          0                 0 0
##      0.671638488556335                          0                 0 0
##      0.688092298985074                          0                 0 0
##      0.806600378227794                          0                 0 0
##      0.867455094638368                          0                 0 0
##      0.897003448844096                          0                 0 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 1.34930555555556 4.020833333 6.15
##      0.000000000123720820519974                0           0    0
##      0.0000000142143709248919                  0           0    0
##      0.0000000203570784591136                  0           0    0
##      0.0000000942663046181582                  0           0    0
##      0.0381424863643358                        0           0    0
##      0.0395235614826762                        0           0    0
##      0.0398504564629362                        0           0    0
##      0.0449831541922517                        0           0    0
##      0.150208567676068                         0           0    0
##      0.291704657263826                         0           0    0
##      0.31263158525612                          0           0    0
##      0.313581394222809                         0           0    0
##      0.399450114450523                         0           0    0
##      0.419739887455571                         0           0    0
##      0.425358901761228                         0           0    0
##      0.594035429893685                         0           0    0
##      0.671638488556335                         0           0    0
##      0.688092298985074                         0           0    0
##      0.806600378227794                         0           0    0
##      0.867455094638368                         0           0    0
##      0.897003448844096                         0           0    0
## 
## , , OTT_Time = 0.5104166667, Snapchat_Time = 1, Instagram_Time = 0.138888888888889
## 
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.125 0.142361111111111 0.152777777777778
##      0.000000000123720820519974     0                 0                 0
##      0.0000000142143709248919       0                 0                 0
##      0.0000000203570784591136       0                 0                 0
##      0.0000000942663046181582       0                 0                 0
##      0.0381424863643358             0                 0                 0
##      0.0395235614826762             0                 0                 0
##      0.0398504564629362             0                 0                 0
##      0.0449831541922517             0                 0                 0
##      0.150208567676068              0                 0                 0
##      0.291704657263826              0                 0                 0
##      0.31263158525612               0                 0                 0
##      0.313581394222809              0                 0                 0
##      0.399450114450523              0                 0                 0
##      0.419739887455571              0                 0                 0
##      0.425358901761228              0                 0                 0
##      0.594035429893685              0                 0                 0
##      0.671638488556335              0                 0                 0
##      0.688092298985074              0                 0                 0
##      0.806600378227794              0                 0                 0
##      0.867455094638368              0                 0                 0
##      0.897003448844096              0                 0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.174305555555556 0.208333333333333
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.220833333333333 0.25 0.270833333333333
##      0.000000000123720820519974                 0    0                 0
##      0.0000000142143709248919                   0    0                 0
##      0.0000000203570784591136                   0    0                 0
##      0.0000000942663046181582                   0    0                 0
##      0.0381424863643358                         0    0                 0
##      0.0395235614826762                         0    0                 0
##      0.0398504564629362                         0    0                 0
##      0.0449831541922517                         0    0                 0
##      0.150208567676068                          0    0                 0
##      0.291704657263826                          0    0                 0
##      0.31263158525612                           0    0                 0
##      0.313581394222809                          0    0                 0
##      0.399450114450523                          0    0                 0
##      0.419739887455571                          0    0                 0
##      0.425358901761228                          0    0                 0
##      0.594035429893685                          0    0                 0
##      0.671638488556335                          0    0                 0
##      0.688092298985074                          0    0                 0
##      0.806600378227794                          0    0                 0
##      0.867455094638368                          0    0                 0
##      0.897003448844096                          0    0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.289583333333333 0.371527777777778
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.409722222222222 0.416666666666667 0.5 0.55625
##      0.000000000123720820519974                 0                 0   0       0
##      0.0000000142143709248919                   0                 0   0       0
##      0.0000000203570784591136                   0                 0   0       0
##      0.0000000942663046181582                   0                 0   0       0
##      0.0381424863643358                         0                 0   0       0
##      0.0395235614826762                         0                 0   0       0
##      0.0398504564629362                         0                 0   0       0
##      0.0449831541922517                         0                 0   0       0
##      0.150208567676068                          0                 0   0       0
##      0.291704657263826                          0                 0   0       0
##      0.31263158525612                           0                 0   0       0
##      0.313581394222809                          0                 0   0       0
##      0.399450114450523                          0                 0   0       0
##      0.419739887455571                          0                 0   0       0
##      0.425358901761228                          0                 0   0       0
##      0.594035429893685                          0                 0   0       0
##      0.671638488556335                          0                 0   0       0
##      0.688092298985074                          0                 0   0       0
##      0.806600378227794                          0                 0   0       0
##      0.867455094638368                          0                 0   0       0
##      0.897003448844096                          0                 0   0       0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.639583333333333 0.907785087701754 1
##      0.000000000123720820519974                 0                 0 0
##      0.0000000142143709248919                   0                 0 0
##      0.0000000203570784591136                   0                 0 0
##      0.0000000942663046181582                   0                 0 0
##      0.0381424863643358                         0                 0 0
##      0.0395235614826762                         0                 0 0
##      0.0398504564629362                         0                 0 0
##      0.0449831541922517                         0                 0 0
##      0.150208567676068                          0                 0 0
##      0.291704657263826                          0                 0 0
##      0.31263158525612                           0                 0 0
##      0.313581394222809                          0                 0 0
##      0.399450114450523                          0                 0 0
##      0.419739887455571                          0                 0 0
##      0.425358901761228                          0                 0 0
##      0.594035429893685                          0                 0 0
##      0.671638488556335                          0                 0 0
##      0.688092298985074                          0                 0 0
##      0.806600378227794                          0                 0 0
##      0.867455094638368                          0                 0 0
##      0.897003448844096                          0                 0 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 1.34930555555556 4.020833333 6.15
##      0.000000000123720820519974                0           0    0
##      0.0000000142143709248919                  0           0    0
##      0.0000000203570784591136                  0           0    0
##      0.0000000942663046181582                  0           0    0
##      0.0381424863643358                        0           0    0
##      0.0395235614826762                        0           0    0
##      0.0398504564629362                        0           0    0
##      0.0449831541922517                        0           0    0
##      0.150208567676068                         0           0    0
##      0.291704657263826                         0           0    0
##      0.31263158525612                          0           0    0
##      0.313581394222809                         0           0    0
##      0.399450114450523                         0           0    0
##      0.419739887455571                         0           0    0
##      0.425358901761228                         0           0    0
##      0.594035429893685                         0           0    0
##      0.671638488556335                         0           0    0
##      0.688092298985074                         0           0    0
##      0.806600378227794                         0           0    0
##      0.867455094638368                         0           0    0
##      0.897003448844096                         0           0    0
## 
## , , OTT_Time = 1.44460470085726, Snapchat_Time = 1, Instagram_Time = 0.138888888888889
## 
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.125 0.142361111111111 0.152777777777778
##      0.000000000123720820519974     0                 0                 0
##      0.0000000142143709248919       0                 0                 0
##      0.0000000203570784591136       0                 0                 0
##      0.0000000942663046181582       0                 0                 0
##      0.0381424863643358             0                 0                 0
##      0.0395235614826762             0                 0                 0
##      0.0398504564629362             0                 0                 0
##      0.0449831541922517             0                 0                 0
##      0.150208567676068              0                 0                 0
##      0.291704657263826              0                 0                 0
##      0.31263158525612               0                 0                 0
##      0.313581394222809              0                 0                 0
##      0.399450114450523              0                 0                 0
##      0.419739887455571              0                 0                 0
##      0.425358901761228              0                 0                 0
##      0.594035429893685              0                 0                 0
##      0.671638488556335              0                 0                 0
##      0.688092298985074              0                 0                 0
##      0.806600378227794              0                 0                 0
##      0.867455094638368              0                 0                 0
##      0.897003448844096              0                 0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.174305555555556 0.208333333333333
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.220833333333333 0.25 0.270833333333333
##      0.000000000123720820519974                 0    0                 0
##      0.0000000142143709248919                   0    0                 0
##      0.0000000203570784591136                   0    0                 0
##      0.0000000942663046181582                   0    0                 0
##      0.0381424863643358                         0    0                 0
##      0.0395235614826762                         0    0                 0
##      0.0398504564629362                         0    0                 0
##      0.0449831541922517                         0    0                 0
##      0.150208567676068                          0    0                 0
##      0.291704657263826                          0    0                 0
##      0.31263158525612                           0    0                 0
##      0.313581394222809                          0    0                 0
##      0.399450114450523                          0    0                 0
##      0.419739887455571                          0    0                 0
##      0.425358901761228                          0    0                 0
##      0.594035429893685                          0    0                 0
##      0.671638488556335                          0    0                 0
##      0.688092298985074                          0    0                 0
##      0.806600378227794                          0    0                 0
##      0.867455094638368                          0    0                 0
##      0.897003448844096                          0    0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.289583333333333 0.371527777777778
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.409722222222222 0.416666666666667 0.5 0.55625
##      0.000000000123720820519974                 0                 0   0       0
##      0.0000000142143709248919                   0                 0   0       0
##      0.0000000203570784591136                   0                 0   0       0
##      0.0000000942663046181582                   0                 0   0       0
##      0.0381424863643358                         0                 0   0       0
##      0.0395235614826762                         0                 0   0       0
##      0.0398504564629362                         0                 0   0       0
##      0.0449831541922517                         0                 0   0       0
##      0.150208567676068                          0                 0   0       0
##      0.291704657263826                          0                 0   0       0
##      0.31263158525612                           0                 0   0       0
##      0.313581394222809                          0                 0   0       0
##      0.399450114450523                          0                 0   0       0
##      0.419739887455571                          0                 0   0       0
##      0.425358901761228                          0                 0   0       0
##      0.594035429893685                          0                 0   0       0
##      0.671638488556335                          0                 0   0       0
##      0.688092298985074                          0                 0   0       0
##      0.806600378227794                          0                 0   0       0
##      0.867455094638368                          0                 0   0       0
##      0.897003448844096                          0                 0   0       0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.639583333333333 0.907785087701754 1
##      0.000000000123720820519974                 0                 0 0
##      0.0000000142143709248919                   0                 0 0
##      0.0000000203570784591136                   0                 0 0
##      0.0000000942663046181582                   0                 0 0
##      0.0381424863643358                         0                 0 0
##      0.0395235614826762                         0                 0 0
##      0.0398504564629362                         0                 0 0
##      0.0449831541922517                         0                 0 0
##      0.150208567676068                          0                 0 0
##      0.291704657263826                          0                 0 0
##      0.31263158525612                           0                 0 0
##      0.313581394222809                          0                 0 0
##      0.399450114450523                          0                 0 0
##      0.419739887455571                          0                 0 0
##      0.425358901761228                          0                 0 0
##      0.594035429893685                          0                 0 0
##      0.671638488556335                          0                 0 0
##      0.688092298985074                          0                 0 0
##      0.806600378227794                          0                 0 0
##      0.867455094638368                          0                 0 0
##      0.897003448844096                          0                 0 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 1.34930555555556 4.020833333 6.15
##      0.000000000123720820519974                0           0    0
##      0.0000000142143709248919                  0           0    0
##      0.0000000203570784591136                  0           0    0
##      0.0000000942663046181582                  0           0    0
##      0.0381424863643358                        0           0    0
##      0.0395235614826762                        0           0    0
##      0.0398504564629362                        0           0    0
##      0.0449831541922517                        0           0    0
##      0.150208567676068                         0           0    0
##      0.291704657263826                         0           0    0
##      0.31263158525612                          0           0    0
##      0.313581394222809                         0           0    0
##      0.399450114450523                         0           0    0
##      0.419739887455571                         0           0    0
##      0.425358901761228                         0           0    0
##      0.594035429893685                         0           0    0
##      0.671638488556335                         0           0    0
##      0.688092298985074                         0           0    0
##      0.806600378227794                         0           0    0
##      0.867455094638368                         0           0    0
##      0.897003448844096                         0           0    0
## 
## , , OTT_Time = 3, Snapchat_Time = 1, Instagram_Time = 0.138888888888889
## 
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.125 0.142361111111111 0.152777777777778
##      0.000000000123720820519974     0                 0                 0
##      0.0000000142143709248919       0                 0                 0
##      0.0000000203570784591136       0                 0                 0
##      0.0000000942663046181582       0                 0                 0
##      0.0381424863643358             0                 0                 0
##      0.0395235614826762             0                 0                 0
##      0.0398504564629362             0                 0                 0
##      0.0449831541922517             0                 0                 0
##      0.150208567676068              0                 0                 0
##      0.291704657263826              0                 0                 0
##      0.31263158525612               0                 0                 0
##      0.313581394222809              0                 0                 0
##      0.399450114450523              0                 0                 0
##      0.419739887455571              0                 0                 0
##      0.425358901761228              0                 0                 0
##      0.594035429893685              0                 0                 0
##      0.671638488556335              0                 0                 0
##      0.688092298985074              0                 0                 0
##      0.806600378227794              0                 0                 0
##      0.867455094638368              0                 0                 0
##      0.897003448844096              0                 0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.174305555555556 0.208333333333333
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.220833333333333 0.25 0.270833333333333
##      0.000000000123720820519974                 0    0                 0
##      0.0000000142143709248919                   0    0                 0
##      0.0000000203570784591136                   0    0                 0
##      0.0000000942663046181582                   0    0                 0
##      0.0381424863643358                         0    0                 0
##      0.0395235614826762                         0    0                 0
##      0.0398504564629362                         0    0                 0
##      0.0449831541922517                         0    0                 0
##      0.150208567676068                          0    0                 0
##      0.291704657263826                          0    0                 0
##      0.31263158525612                           0    0                 0
##      0.313581394222809                          0    0                 0
##      0.399450114450523                          0    0                 0
##      0.419739887455571                          0    0                 0
##      0.425358901761228                          0    0                 0
##      0.594035429893685                          0    0                 0
##      0.671638488556335                          0    0                 0
##      0.688092298985074                          0    0                 0
##      0.806600378227794                          0    0                 0
##      0.867455094638368                          0    0                 0
##      0.897003448844096                          0    0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.289583333333333 0.371527777777778
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.409722222222222 0.416666666666667 0.5 0.55625
##      0.000000000123720820519974                 0                 0   0       0
##      0.0000000142143709248919                   0                 0   0       0
##      0.0000000203570784591136                   0                 0   0       0
##      0.0000000942663046181582                   0                 0   0       0
##      0.0381424863643358                         0                 0   0       0
##      0.0395235614826762                         0                 0   0       0
##      0.0398504564629362                         0                 0   0       0
##      0.0449831541922517                         0                 0   0       0
##      0.150208567676068                          0                 0   0       0
##      0.291704657263826                          0                 0   0       0
##      0.31263158525612                           0                 0   0       0
##      0.313581394222809                          0                 0   0       0
##      0.399450114450523                          0                 0   0       0
##      0.419739887455571                          0                 0   0       0
##      0.425358901761228                          0                 0   0       0
##      0.594035429893685                          0                 0   0       0
##      0.671638488556335                          0                 0   0       0
##      0.688092298985074                          0                 0   0       0
##      0.806600378227794                          0                 0   0       0
##      0.867455094638368                          0                 0   0       0
##      0.897003448844096                          0                 0   0       0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.639583333333333 0.907785087701754 1
##      0.000000000123720820519974                 0                 0 0
##      0.0000000142143709248919                   0                 0 0
##      0.0000000203570784591136                   0                 0 0
##      0.0000000942663046181582                   0                 0 0
##      0.0381424863643358                         0                 0 0
##      0.0395235614826762                         0                 0 0
##      0.0398504564629362                         0                 0 0
##      0.0449831541922517                         0                 0 0
##      0.150208567676068                          0                 0 0
##      0.291704657263826                          0                 0 0
##      0.31263158525612                           0                 0 0
##      0.313581394222809                          0                 0 0
##      0.399450114450523                          0                 0 0
##      0.419739887455571                          0                 0 0
##      0.425358901761228                          0                 0 0
##      0.594035429893685                          0                 0 0
##      0.671638488556335                          0                 0 0
##      0.688092298985074                          0                 0 0
##      0.806600378227794                          0                 0 0
##      0.867455094638368                          0                 0 0
##      0.897003448844096                          0                 0 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 1.34930555555556 4.020833333 6.15
##      0.000000000123720820519974                0           0    0
##      0.0000000142143709248919                  0           0    0
##      0.0000000203570784591136                  0           0    0
##      0.0000000942663046181582                  0           0    0
##      0.0381424863643358                        0           0    0
##      0.0395235614826762                        0           0    0
##      0.0398504564629362                        0           0    0
##      0.0449831541922517                        0           0    0
##      0.150208567676068                         0           0    0
##      0.291704657263826                         0           0    0
##      0.31263158525612                          0           0    0
##      0.313581394222809                         0           0    0
##      0.399450114450523                         0           0    0
##      0.419739887455571                         0           0    0
##      0.425358901761228                         0           0    0
##      0.594035429893685                         0           0    0
##      0.671638488556335                         0           0    0
##      0.688092298985074                         0           0    0
##      0.806600378227794                         0           0    0
##      0.867455094638368                         0           0    0
##      0.897003448844096                         0           0    0
## 
## , , OTT_Time = 14.5, Snapchat_Time = 1, Instagram_Time = 0.138888888888889
## 
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.125 0.142361111111111 0.152777777777778
##      0.000000000123720820519974     0                 0                 0
##      0.0000000142143709248919       0                 0                 0
##      0.0000000203570784591136       0                 0                 0
##      0.0000000942663046181582       0                 0                 0
##      0.0381424863643358             0                 0                 0
##      0.0395235614826762             0                 0                 0
##      0.0398504564629362             0                 0                 0
##      0.0449831541922517             0                 0                 0
##      0.150208567676068              0                 0                 0
##      0.291704657263826              0                 0                 0
##      0.31263158525612               0                 0                 0
##      0.313581394222809              0                 0                 0
##      0.399450114450523              0                 0                 0
##      0.419739887455571              0                 0                 0
##      0.425358901761228              0                 0                 0
##      0.594035429893685              0                 0                 0
##      0.671638488556335              0                 0                 0
##      0.688092298985074              0                 0                 0
##      0.806600378227794              0                 0                 0
##      0.867455094638368              0                 0                 0
##      0.897003448844096              0                 0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.174305555555556 0.208333333333333
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.220833333333333 0.25 0.270833333333333
##      0.000000000123720820519974                 0    0                 0
##      0.0000000142143709248919                   0    0                 0
##      0.0000000203570784591136                   0    0                 0
##      0.0000000942663046181582                   0    0                 0
##      0.0381424863643358                         0    0                 0
##      0.0395235614826762                         0    0                 0
##      0.0398504564629362                         0    0                 0
##      0.0449831541922517                         0    0                 0
##      0.150208567676068                          0    0                 0
##      0.291704657263826                          0    0                 0
##      0.31263158525612                           0    0                 0
##      0.313581394222809                          0    0                 0
##      0.399450114450523                          0    0                 0
##      0.419739887455571                          0    0                 0
##      0.425358901761228                          0    0                 0
##      0.594035429893685                          0    0                 0
##      0.671638488556335                          0    0                 0
##      0.688092298985074                          0    0                 0
##      0.806600378227794                          0    0                 0
##      0.867455094638368                          0    0                 0
##      0.897003448844096                          0    0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.289583333333333 0.371527777777778
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.409722222222222 0.416666666666667 0.5 0.55625
##      0.000000000123720820519974                 0                 0   0       0
##      0.0000000142143709248919                   0                 0   0       0
##      0.0000000203570784591136                   0                 0   0       0
##      0.0000000942663046181582                   0                 0   0       0
##      0.0381424863643358                         0                 0   0       0
##      0.0395235614826762                         0                 0   0       0
##      0.0398504564629362                         0                 0   0       0
##      0.0449831541922517                         0                 0   0       0
##      0.150208567676068                          0                 0   0       0
##      0.291704657263826                          0                 0   0       0
##      0.31263158525612                           0                 0   0       0
##      0.313581394222809                          0                 0   0       0
##      0.399450114450523                          0                 0   0       0
##      0.419739887455571                          0                 0   0       0
##      0.425358901761228                          0                 0   0       0
##      0.594035429893685                          0                 0   0       0
##      0.671638488556335                          0                 0   0       0
##      0.688092298985074                          0                 0   0       0
##      0.806600378227794                          0                 0   0       0
##      0.867455094638368                          0                 0   0       0
##      0.897003448844096                          0                 0   0       0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.639583333333333 0.907785087701754 1
##      0.000000000123720820519974                 0                 0 0
##      0.0000000142143709248919                   0                 0 0
##      0.0000000203570784591136                   0                 0 0
##      0.0000000942663046181582                   0                 0 0
##      0.0381424863643358                         0                 0 0
##      0.0395235614826762                         0                 0 0
##      0.0398504564629362                         0                 0 0
##      0.0449831541922517                         0                 0 0
##      0.150208567676068                          0                 0 0
##      0.291704657263826                          0                 0 0
##      0.31263158525612                           0                 0 0
##      0.313581394222809                          0                 0 0
##      0.399450114450523                          0                 0 0
##      0.419739887455571                          0                 0 0
##      0.425358901761228                          0                 0 0
##      0.594035429893685                          0                 0 0
##      0.671638488556335                          0                 0 0
##      0.688092298985074                          0                 0 0
##      0.806600378227794                          0                 0 0
##      0.867455094638368                          0                 0 0
##      0.897003448844096                          0                 0 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 1.34930555555556 4.020833333 6.15
##      0.000000000123720820519974                0           0    0
##      0.0000000142143709248919                  0           0    0
##      0.0000000203570784591136                  0           0    0
##      0.0000000942663046181582                  0           0    0
##      0.0381424863643358                        0           0    0
##      0.0395235614826762                        0           0    0
##      0.0398504564629362                        0           0    0
##      0.0449831541922517                        0           0    0
##      0.150208567676068                         0           0    0
##      0.291704657263826                         0           0    0
##      0.31263158525612                          0           0    0
##      0.313581394222809                         0           0    0
##      0.399450114450523                         0           0    0
##      0.419739887455571                         0           0    0
##      0.425358901761228                         0           0    0
##      0.594035429893685                         0           0    0
##      0.671638488556335                         0           0    0
##      0.688092298985074                         0           0    0
##      0.806600378227794                         0           0    0
##      0.867455094638368                         0           0    0
##      0.897003448844096                         0           0    0
## 
## , , OTT_Time = 0, Snapchat_Time = 3.83333333333333, Instagram_Time = 0.138888888888889
## 
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.125 0.142361111111111 0.152777777777778
##      0.000000000123720820519974     0                 0                 0
##      0.0000000142143709248919       0                 0                 0
##      0.0000000203570784591136       0                 0                 0
##      0.0000000942663046181582       0                 0                 0
##      0.0381424863643358             0                 0                 0
##      0.0395235614826762             0                 0                 0
##      0.0398504564629362             0                 0                 0
##      0.0449831541922517             0                 0                 0
##      0.150208567676068              0                 0                 0
##      0.291704657263826              0                 0                 0
##      0.31263158525612               0                 0                 0
##      0.313581394222809              0                 0                 0
##      0.399450114450523              0                 0                 0
##      0.419739887455571              0                 0                 0
##      0.425358901761228              0                 0                 0
##      0.594035429893685              0                 0                 0
##      0.671638488556335              0                 0                 0
##      0.688092298985074              0                 0                 0
##      0.806600378227794              0                 0                 0
##      0.867455094638368              0                 0                 0
##      0.897003448844096              0                 0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.174305555555556 0.208333333333333
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.220833333333333 0.25 0.270833333333333
##      0.000000000123720820519974                 0    0                 0
##      0.0000000142143709248919                   0    0                 0
##      0.0000000203570784591136                   0    0                 0
##      0.0000000942663046181582                   0    0                 0
##      0.0381424863643358                         0    0                 0
##      0.0395235614826762                         0    0                 0
##      0.0398504564629362                         0    0                 0
##      0.0449831541922517                         0    0                 0
##      0.150208567676068                          0    0                 0
##      0.291704657263826                          0    0                 0
##      0.31263158525612                           0    0                 0
##      0.313581394222809                          0    0                 0
##      0.399450114450523                          0    0                 0
##      0.419739887455571                          0    0                 0
##      0.425358901761228                          0    0                 0
##      0.594035429893685                          0    0                 0
##      0.671638488556335                          0    0                 0
##      0.688092298985074                          0    0                 0
##      0.806600378227794                          0    0                 0
##      0.867455094638368                          0    0                 0
##      0.897003448844096                          0    0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.289583333333333 0.371527777777778
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.409722222222222 0.416666666666667 0.5 0.55625
##      0.000000000123720820519974                 0                 0   0       0
##      0.0000000142143709248919                   0                 0   0       0
##      0.0000000203570784591136                   0                 0   0       0
##      0.0000000942663046181582                   0                 0   0       0
##      0.0381424863643358                         0                 0   0       0
##      0.0395235614826762                         0                 0   0       0
##      0.0398504564629362                         0                 0   0       0
##      0.0449831541922517                         0                 0   0       0
##      0.150208567676068                          0                 0   0       0
##      0.291704657263826                          0                 0   0       0
##      0.31263158525612                           0                 0   0       0
##      0.313581394222809                          0                 0   0       0
##      0.399450114450523                          0                 0   0       0
##      0.419739887455571                          0                 0   0       0
##      0.425358901761228                          0                 0   0       0
##      0.594035429893685                          0                 0   0       0
##      0.671638488556335                          0                 0   0       0
##      0.688092298985074                          0                 0   0       0
##      0.806600378227794                          0                 0   0       0
##      0.867455094638368                          0                 0   0       0
##      0.897003448844096                          0                 0   0       0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.639583333333333 0.907785087701754 1
##      0.000000000123720820519974                 0                 0 0
##      0.0000000142143709248919                   0                 0 0
##      0.0000000203570784591136                   0                 0 0
##      0.0000000942663046181582                   0                 0 0
##      0.0381424863643358                         0                 0 0
##      0.0395235614826762                         0                 0 0
##      0.0398504564629362                         0                 0 0
##      0.0449831541922517                         0                 0 0
##      0.150208567676068                          0                 0 0
##      0.291704657263826                          0                 0 0
##      0.31263158525612                           0                 0 0
##      0.313581394222809                          0                 0 0
##      0.399450114450523                          0                 0 0
##      0.419739887455571                          0                 0 0
##      0.425358901761228                          0                 0 0
##      0.594035429893685                          0                 0 0
##      0.671638488556335                          0                 0 0
##      0.688092298985074                          0                 0 0
##      0.806600378227794                          0                 0 0
##      0.867455094638368                          0                 0 0
##      0.897003448844096                          0                 0 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 1.34930555555556 4.020833333 6.15
##      0.000000000123720820519974                0           0    0
##      0.0000000142143709248919                  0           0    0
##      0.0000000203570784591136                  0           0    0
##      0.0000000942663046181582                  0           0    0
##      0.0381424863643358                        0           0    0
##      0.0395235614826762                        0           0    0
##      0.0398504564629362                        0           0    0
##      0.0449831541922517                        0           0    0
##      0.150208567676068                         0           0    0
##      0.291704657263826                         0           0    0
##      0.31263158525612                          0           0    0
##      0.313581394222809                         0           0    0
##      0.399450114450523                         0           0    0
##      0.419739887455571                         0           0    0
##      0.425358901761228                         0           0    0
##      0.594035429893685                         0           0    0
##      0.671638488556335                         0           0    0
##      0.688092298985074                         0           0    0
##      0.806600378227794                         0           0    0
##      0.867455094638368                         0           0    0
##      0.897003448844096                         0           0    0
## 
## , , OTT_Time = 0.102777777777778, Snapchat_Time = 3.83333333333333, Instagram_Time = 0.138888888888889
## 
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.125 0.142361111111111 0.152777777777778
##      0.000000000123720820519974     0                 0                 0
##      0.0000000142143709248919       0                 0                 0
##      0.0000000203570784591136       0                 0                 0
##      0.0000000942663046181582       0                 0                 0
##      0.0381424863643358             0                 0                 0
##      0.0395235614826762             0                 0                 0
##      0.0398504564629362             0                 0                 0
##      0.0449831541922517             0                 0                 0
##      0.150208567676068              0                 0                 0
##      0.291704657263826              0                 0                 0
##      0.31263158525612               0                 0                 0
##      0.313581394222809              0                 0                 0
##      0.399450114450523              0                 0                 0
##      0.419739887455571              0                 0                 0
##      0.425358901761228              0                 0                 0
##      0.594035429893685              0                 0                 0
##      0.671638488556335              0                 0                 0
##      0.688092298985074              0                 0                 0
##      0.806600378227794              0                 0                 0
##      0.867455094638368              0                 0                 0
##      0.897003448844096              0                 0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.174305555555556 0.208333333333333
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.220833333333333 0.25 0.270833333333333
##      0.000000000123720820519974                 0    0                 0
##      0.0000000142143709248919                   0    0                 0
##      0.0000000203570784591136                   0    0                 0
##      0.0000000942663046181582                   0    0                 0
##      0.0381424863643358                         0    0                 0
##      0.0395235614826762                         0    0                 0
##      0.0398504564629362                         0    0                 0
##      0.0449831541922517                         0    0                 0
##      0.150208567676068                          0    0                 0
##      0.291704657263826                          0    0                 0
##      0.31263158525612                           0    0                 0
##      0.313581394222809                          0    0                 0
##      0.399450114450523                          0    0                 0
##      0.419739887455571                          0    0                 0
##      0.425358901761228                          0    0                 0
##      0.594035429893685                          0    0                 0
##      0.671638488556335                          0    0                 0
##      0.688092298985074                          0    0                 0
##      0.806600378227794                          0    0                 0
##      0.867455094638368                          0    0                 0
##      0.897003448844096                          0    0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.289583333333333 0.371527777777778
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.409722222222222 0.416666666666667 0.5 0.55625
##      0.000000000123720820519974                 0                 0   0       0
##      0.0000000142143709248919                   0                 0   0       0
##      0.0000000203570784591136                   0                 0   0       0
##      0.0000000942663046181582                   0                 0   0       0
##      0.0381424863643358                         0                 0   0       0
##      0.0395235614826762                         0                 0   0       0
##      0.0398504564629362                         0                 0   0       0
##      0.0449831541922517                         0                 0   0       0
##      0.150208567676068                          0                 0   0       0
##      0.291704657263826                          0                 0   0       0
##      0.31263158525612                           0                 0   0       0
##      0.313581394222809                          0                 0   0       0
##      0.399450114450523                          0                 0   0       0
##      0.419739887455571                          0                 0   0       0
##      0.425358901761228                          0                 0   0       0
##      0.594035429893685                          0                 0   0       0
##      0.671638488556335                          0                 0   0       0
##      0.688092298985074                          0                 0   0       0
##      0.806600378227794                          0                 0   0       0
##      0.867455094638368                          0                 0   0       0
##      0.897003448844096                          0                 0   0       0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.639583333333333 0.907785087701754 1
##      0.000000000123720820519974                 0                 0 0
##      0.0000000142143709248919                   0                 0 0
##      0.0000000203570784591136                   0                 0 0
##      0.0000000942663046181582                   0                 0 0
##      0.0381424863643358                         0                 0 0
##      0.0395235614826762                         0                 0 0
##      0.0398504564629362                         0                 0 0
##      0.0449831541922517                         0                 0 0
##      0.150208567676068                          0                 0 0
##      0.291704657263826                          0                 0 0
##      0.31263158525612                           0                 0 0
##      0.313581394222809                          0                 0 0
##      0.399450114450523                          0                 0 0
##      0.419739887455571                          0                 0 0
##      0.425358901761228                          0                 0 0
##      0.594035429893685                          0                 0 0
##      0.671638488556335                          0                 0 0
##      0.688092298985074                          0                 0 0
##      0.806600378227794                          0                 0 0
##      0.867455094638368                          0                 0 0
##      0.897003448844096                          0                 0 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 1.34930555555556 4.020833333 6.15
##      0.000000000123720820519974                0           0    0
##      0.0000000142143709248919                  0           0    0
##      0.0000000203570784591136                  0           0    0
##      0.0000000942663046181582                  0           0    0
##      0.0381424863643358                        0           0    0
##      0.0395235614826762                        0           0    0
##      0.0398504564629362                        0           0    0
##      0.0449831541922517                        0           0    0
##      0.150208567676068                         0           0    0
##      0.291704657263826                         0           0    0
##      0.31263158525612                          0           0    0
##      0.313581394222809                         0           0    0
##      0.399450114450523                         0           0    0
##      0.419739887455571                         0           0    0
##      0.425358901761228                         0           0    0
##      0.594035429893685                         0           0    0
##      0.671638488556335                         0           0    0
##      0.688092298985074                         0           0    0
##      0.806600378227794                         0           0    0
##      0.867455094638368                         0           0    0
##      0.897003448844096                         0           0    0
## 
## , , OTT_Time = 0.125, Snapchat_Time = 3.83333333333333, Instagram_Time = 0.138888888888889
## 
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.125 0.142361111111111 0.152777777777778
##      0.000000000123720820519974     0                 0                 0
##      0.0000000142143709248919       0                 0                 0
##      0.0000000203570784591136       0                 0                 0
##      0.0000000942663046181582       0                 0                 0
##      0.0381424863643358             0                 0                 0
##      0.0395235614826762             0                 0                 0
##      0.0398504564629362             0                 0                 0
##      0.0449831541922517             0                 0                 0
##      0.150208567676068              0                 0                 0
##      0.291704657263826              0                 0                 0
##      0.31263158525612               0                 0                 0
##      0.313581394222809              0                 0                 0
##      0.399450114450523              0                 0                 0
##      0.419739887455571              0                 0                 0
##      0.425358901761228              0                 0                 0
##      0.594035429893685              0                 0                 0
##      0.671638488556335              0                 0                 0
##      0.688092298985074              0                 0                 0
##      0.806600378227794              0                 0                 0
##      0.867455094638368              0                 0                 0
##      0.897003448844096              0                 0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.174305555555556 0.208333333333333
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.220833333333333 0.25 0.270833333333333
##      0.000000000123720820519974                 0    0                 0
##      0.0000000142143709248919                   0    0                 0
##      0.0000000203570784591136                   0    0                 0
##      0.0000000942663046181582                   0    0                 0
##      0.0381424863643358                         0    0                 0
##      0.0395235614826762                         0    0                 0
##      0.0398504564629362                         0    0                 0
##      0.0449831541922517                         0    0                 0
##      0.150208567676068                          0    0                 0
##      0.291704657263826                          0    0                 0
##      0.31263158525612                           0    0                 0
##      0.313581394222809                          0    0                 0
##      0.399450114450523                          0    0                 0
##      0.419739887455571                          0    0                 0
##      0.425358901761228                          0    0                 0
##      0.594035429893685                          0    0                 0
##      0.671638488556335                          0    0                 0
##      0.688092298985074                          0    0                 0
##      0.806600378227794                          0    0                 0
##      0.867455094638368                          0    0                 0
##      0.897003448844096                          0    0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.289583333333333 0.371527777777778
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.409722222222222 0.416666666666667 0.5 0.55625
##      0.000000000123720820519974                 0                 0   0       0
##      0.0000000142143709248919                   0                 0   0       0
##      0.0000000203570784591136                   0                 0   0       0
##      0.0000000942663046181582                   0                 0   0       0
##      0.0381424863643358                         0                 0   0       0
##      0.0395235614826762                         0                 0   0       0
##      0.0398504564629362                         0                 0   0       0
##      0.0449831541922517                         0                 0   0       0
##      0.150208567676068                          0                 0   0       0
##      0.291704657263826                          0                 0   0       0
##      0.31263158525612                           0                 0   0       0
##      0.313581394222809                          0                 0   0       0
##      0.399450114450523                          0                 0   0       0
##      0.419739887455571                          0                 0   0       0
##      0.425358901761228                          0                 0   0       0
##      0.594035429893685                          0                 0   0       0
##      0.671638488556335                          0                 0   0       0
##      0.688092298985074                          0                 0   0       0
##      0.806600378227794                          0                 0   0       0
##      0.867455094638368                          0                 0   0       0
##      0.897003448844096                          0                 0   0       0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.639583333333333 0.907785087701754 1
##      0.000000000123720820519974                 0                 0 0
##      0.0000000142143709248919                   0                 0 0
##      0.0000000203570784591136                   0                 0 0
##      0.0000000942663046181582                   0                 0 0
##      0.0381424863643358                         0                 0 0
##      0.0395235614826762                         0                 0 0
##      0.0398504564629362                         0                 0 0
##      0.0449831541922517                         0                 0 0
##      0.150208567676068                          0                 0 0
##      0.291704657263826                          0                 0 0
##      0.31263158525612                           0                 0 0
##      0.313581394222809                          0                 0 0
##      0.399450114450523                          0                 0 0
##      0.419739887455571                          0                 0 0
##      0.425358901761228                          0                 0 0
##      0.594035429893685                          0                 0 0
##      0.671638488556335                          0                 0 0
##      0.688092298985074                          0                 0 0
##      0.806600378227794                          0                 0 0
##      0.867455094638368                          0                 0 0
##      0.897003448844096                          0                 0 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 1.34930555555556 4.020833333 6.15
##      0.000000000123720820519974                0           0    0
##      0.0000000142143709248919                  0           0    0
##      0.0000000203570784591136                  0           0    0
##      0.0000000942663046181582                  0           0    0
##      0.0381424863643358                        0           0    0
##      0.0395235614826762                        0           0    0
##      0.0398504564629362                        0           0    0
##      0.0449831541922517                        0           0    0
##      0.150208567676068                         0           0    0
##      0.291704657263826                         0           0    0
##      0.31263158525612                          0           0    0
##      0.313581394222809                         0           0    0
##      0.399450114450523                         0           0    0
##      0.419739887455571                         0           0    0
##      0.425358901761228                         0           0    0
##      0.594035429893685                         0           0    0
##      0.671638488556335                         0           0    0
##      0.688092298985074                         0           0    0
##      0.806600378227794                         0           0    0
##      0.867455094638368                         0           0    0
##      0.897003448844096                         0           0    0
## 
## , , OTT_Time = 0.416666666666667, Snapchat_Time = 3.83333333333333, Instagram_Time = 0.138888888888889
## 
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.125 0.142361111111111 0.152777777777778
##      0.000000000123720820519974     0                 0                 0
##      0.0000000142143709248919       0                 0                 0
##      0.0000000203570784591136       0                 0                 0
##      0.0000000942663046181582       0                 0                 0
##      0.0381424863643358             0                 0                 0
##      0.0395235614826762             0                 0                 0
##      0.0398504564629362             0                 0                 0
##      0.0449831541922517             0                 0                 0
##      0.150208567676068              0                 0                 0
##      0.291704657263826              0                 0                 0
##      0.31263158525612               0                 0                 0
##      0.313581394222809              0                 0                 0
##      0.399450114450523              0                 0                 0
##      0.419739887455571              0                 0                 0
##      0.425358901761228              0                 0                 0
##      0.594035429893685              0                 0                 0
##      0.671638488556335              0                 0                 0
##      0.688092298985074              0                 0                 0
##      0.806600378227794              0                 0                 0
##      0.867455094638368              0                 0                 0
##      0.897003448844096              0                 0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.174305555555556 0.208333333333333
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.220833333333333 0.25 0.270833333333333
##      0.000000000123720820519974                 0    0                 0
##      0.0000000142143709248919                   0    0                 0
##      0.0000000203570784591136                   0    0                 0
##      0.0000000942663046181582                   0    0                 0
##      0.0381424863643358                         0    0                 0
##      0.0395235614826762                         0    0                 0
##      0.0398504564629362                         0    0                 0
##      0.0449831541922517                         0    0                 0
##      0.150208567676068                          0    0                 0
##      0.291704657263826                          0    0                 0
##      0.31263158525612                           0    0                 0
##      0.313581394222809                          0    0                 0
##      0.399450114450523                          0    0                 0
##      0.419739887455571                          0    0                 0
##      0.425358901761228                          0    0                 0
##      0.594035429893685                          0    0                 0
##      0.671638488556335                          0    0                 0
##      0.688092298985074                          0    0                 0
##      0.806600378227794                          0    0                 0
##      0.867455094638368                          0    0                 0
##      0.897003448844096                          0    0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.289583333333333 0.371527777777778
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.409722222222222 0.416666666666667 0.5 0.55625
##      0.000000000123720820519974                 0                 0   0       0
##      0.0000000142143709248919                   0                 0   0       0
##      0.0000000203570784591136                   0                 0   0       0
##      0.0000000942663046181582                   0                 0   0       0
##      0.0381424863643358                         0                 0   0       0
##      0.0395235614826762                         0                 0   0       0
##      0.0398504564629362                         0                 0   0       0
##      0.0449831541922517                         0                 0   0       0
##      0.150208567676068                          0                 0   0       0
##      0.291704657263826                          0                 0   0       0
##      0.31263158525612                           0                 0   0       0
##      0.313581394222809                          0                 0   0       0
##      0.399450114450523                          0                 0   0       0
##      0.419739887455571                          0                 0   0       0
##      0.425358901761228                          0                 0   0       0
##      0.594035429893685                          0                 0   0       0
##      0.671638488556335                          0                 0   0       0
##      0.688092298985074                          0                 0   0       0
##      0.806600378227794                          0                 0   0       0
##      0.867455094638368                          0                 0   0       0
##      0.897003448844096                          0                 0   0       0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.639583333333333 0.907785087701754 1
##      0.000000000123720820519974                 0                 0 0
##      0.0000000142143709248919                   0                 0 0
##      0.0000000203570784591136                   0                 0 0
##      0.0000000942663046181582                   0                 0 0
##      0.0381424863643358                         0                 0 0
##      0.0395235614826762                         0                 0 0
##      0.0398504564629362                         0                 0 0
##      0.0449831541922517                         0                 0 0
##      0.150208567676068                          0                 0 0
##      0.291704657263826                          0                 0 0
##      0.31263158525612                           0                 0 0
##      0.313581394222809                          0                 0 0
##      0.399450114450523                          0                 0 0
##      0.419739887455571                          0                 0 0
##      0.425358901761228                          0                 0 0
##      0.594035429893685                          0                 0 0
##      0.671638488556335                          0                 0 0
##      0.688092298985074                          0                 0 0
##      0.806600378227794                          0                 0 0
##      0.867455094638368                          0                 0 0
##      0.897003448844096                          0                 0 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 1.34930555555556 4.020833333 6.15
##      0.000000000123720820519974                0           0    0
##      0.0000000142143709248919                  0           0    0
##      0.0000000203570784591136                  0           0    0
##      0.0000000942663046181582                  0           0    0
##      0.0381424863643358                        0           0    0
##      0.0395235614826762                        0           0    0
##      0.0398504564629362                        0           0    0
##      0.0449831541922517                        0           0    0
##      0.150208567676068                         0           0    0
##      0.291704657263826                         0           0    0
##      0.31263158525612                          0           0    0
##      0.313581394222809                         0           0    0
##      0.399450114450523                         0           0    0
##      0.419739887455571                         0           0    0
##      0.425358901761228                         0           0    0
##      0.594035429893685                         0           0    0
##      0.671638488556335                         0           0    0
##      0.688092298985074                         0           0    0
##      0.806600378227794                         0           0    0
##      0.867455094638368                         0           0    0
##      0.897003448844096                         0           0    0
## 
## , , OTT_Time = 0.5104166667, Snapchat_Time = 3.83333333333333, Instagram_Time = 0.138888888888889
## 
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.125 0.142361111111111 0.152777777777778
##      0.000000000123720820519974     0                 0                 0
##      0.0000000142143709248919       0                 0                 0
##      0.0000000203570784591136       0                 0                 0
##      0.0000000942663046181582       0                 0                 0
##      0.0381424863643358             0                 0                 0
##      0.0395235614826762             0                 0                 0
##      0.0398504564629362             0                 0                 0
##      0.0449831541922517             0                 0                 0
##      0.150208567676068              0                 0                 0
##      0.291704657263826              0                 0                 0
##      0.31263158525612               0                 0                 0
##      0.313581394222809              0                 0                 0
##      0.399450114450523              0                 0                 0
##      0.419739887455571              0                 0                 0
##      0.425358901761228              0                 0                 0
##      0.594035429893685              0                 0                 0
##      0.671638488556335              0                 0                 0
##      0.688092298985074              0                 0                 0
##      0.806600378227794              0                 0                 0
##      0.867455094638368              0                 0                 0
##      0.897003448844096              0                 0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.174305555555556 0.208333333333333
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.220833333333333 0.25 0.270833333333333
##      0.000000000123720820519974                 0    0                 0
##      0.0000000142143709248919                   0    0                 0
##      0.0000000203570784591136                   0    0                 0
##      0.0000000942663046181582                   0    0                 0
##      0.0381424863643358                         0    0                 0
##      0.0395235614826762                         0    0                 0
##      0.0398504564629362                         0    0                 0
##      0.0449831541922517                         0    0                 0
##      0.150208567676068                          0    0                 0
##      0.291704657263826                          0    0                 0
##      0.31263158525612                           0    0                 0
##      0.313581394222809                          0    0                 0
##      0.399450114450523                          0    0                 0
##      0.419739887455571                          0    0                 0
##      0.425358901761228                          0    0                 0
##      0.594035429893685                          0    0                 0
##      0.671638488556335                          0    0                 0
##      0.688092298985074                          0    0                 0
##      0.806600378227794                          0    0                 0
##      0.867455094638368                          0    0                 0
##      0.897003448844096                          0    0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.289583333333333 0.371527777777778
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.409722222222222 0.416666666666667 0.5 0.55625
##      0.000000000123720820519974                 0                 0   0       0
##      0.0000000142143709248919                   0                 0   0       0
##      0.0000000203570784591136                   0                 0   0       0
##      0.0000000942663046181582                   0                 0   0       0
##      0.0381424863643358                         0                 0   0       0
##      0.0395235614826762                         0                 0   0       0
##      0.0398504564629362                         0                 0   0       0
##      0.0449831541922517                         0                 0   0       0
##      0.150208567676068                          0                 0   0       0
##      0.291704657263826                          0                 0   0       0
##      0.31263158525612                           0                 0   0       0
##      0.313581394222809                          0                 0   0       0
##      0.399450114450523                          0                 0   0       0
##      0.419739887455571                          0                 0   0       0
##      0.425358901761228                          0                 0   0       0
##      0.594035429893685                          0                 0   0       0
##      0.671638488556335                          0                 0   0       0
##      0.688092298985074                          0                 0   0       0
##      0.806600378227794                          0                 0   0       0
##      0.867455094638368                          0                 0   0       0
##      0.897003448844096                          0                 0   0       0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.639583333333333 0.907785087701754 1
##      0.000000000123720820519974                 0                 0 0
##      0.0000000142143709248919                   0                 0 0
##      0.0000000203570784591136                   0                 0 0
##      0.0000000942663046181582                   0                 0 0
##      0.0381424863643358                         0                 0 0
##      0.0395235614826762                         0                 0 0
##      0.0398504564629362                         0                 0 0
##      0.0449831541922517                         0                 0 0
##      0.150208567676068                          0                 0 0
##      0.291704657263826                          0                 0 0
##      0.31263158525612                           0                 0 0
##      0.313581394222809                          0                 0 0
##      0.399450114450523                          0                 0 0
##      0.419739887455571                          0                 0 0
##      0.425358901761228                          0                 0 0
##      0.594035429893685                          0                 0 0
##      0.671638488556335                          0                 0 0
##      0.688092298985074                          0                 0 0
##      0.806600378227794                          0                 0 0
##      0.867455094638368                          0                 0 0
##      0.897003448844096                          0                 0 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 1.34930555555556 4.020833333 6.15
##      0.000000000123720820519974                0           0    0
##      0.0000000142143709248919                  0           0    0
##      0.0000000203570784591136                  0           0    0
##      0.0000000942663046181582                  0           0    0
##      0.0381424863643358                        0           0    0
##      0.0395235614826762                        0           0    0
##      0.0398504564629362                        0           0    0
##      0.0449831541922517                        0           0    0
##      0.150208567676068                         0           0    0
##      0.291704657263826                         0           0    0
##      0.31263158525612                          0           0    0
##      0.313581394222809                         0           0    0
##      0.399450114450523                         0           0    0
##      0.419739887455571                         0           0    0
##      0.425358901761228                         0           0    0
##      0.594035429893685                         0           0    0
##      0.671638488556335                         0           0    0
##      0.688092298985074                         0           0    0
##      0.806600378227794                         0           0    0
##      0.867455094638368                         0           0    0
##      0.897003448844096                         0           0    0
## 
## , , OTT_Time = 1.44460470085726, Snapchat_Time = 3.83333333333333, Instagram_Time = 0.138888888888889
## 
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.125 0.142361111111111 0.152777777777778
##      0.000000000123720820519974     0                 0                 0
##      0.0000000142143709248919       0                 0                 0
##      0.0000000203570784591136       0                 0                 0
##      0.0000000942663046181582       0                 0                 0
##      0.0381424863643358             0                 0                 0
##      0.0395235614826762             0                 0                 0
##      0.0398504564629362             0                 0                 0
##      0.0449831541922517             0                 0                 0
##      0.150208567676068              0                 0                 0
##      0.291704657263826              0                 0                 0
##      0.31263158525612               0                 0                 0
##      0.313581394222809              0                 0                 0
##      0.399450114450523              0                 0                 0
##      0.419739887455571              0                 0                 0
##      0.425358901761228              0                 0                 0
##      0.594035429893685              0                 0                 0
##      0.671638488556335              0                 0                 0
##      0.688092298985074              0                 0                 0
##      0.806600378227794              0                 0                 0
##      0.867455094638368              0                 0                 0
##      0.897003448844096              0                 0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.174305555555556 0.208333333333333
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.220833333333333 0.25 0.270833333333333
##      0.000000000123720820519974                 0    0                 0
##      0.0000000142143709248919                   0    0                 0
##      0.0000000203570784591136                   0    0                 0
##      0.0000000942663046181582                   0    0                 0
##      0.0381424863643358                         0    0                 0
##      0.0395235614826762                         0    0                 0
##      0.0398504564629362                         0    0                 0
##      0.0449831541922517                         0    0                 0
##      0.150208567676068                          0    0                 0
##      0.291704657263826                          0    0                 0
##      0.31263158525612                           0    0                 0
##      0.313581394222809                          0    0                 0
##      0.399450114450523                          0    0                 0
##      0.419739887455571                          0    0                 0
##      0.425358901761228                          0    0                 0
##      0.594035429893685                          0    0                 0
##      0.671638488556335                          0    0                 0
##      0.688092298985074                          0    0                 0
##      0.806600378227794                          0    0                 0
##      0.867455094638368                          0    0                 0
##      0.897003448844096                          0    0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.289583333333333 0.371527777777778
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.409722222222222 0.416666666666667 0.5 0.55625
##      0.000000000123720820519974                 0                 0   0       0
##      0.0000000142143709248919                   0                 0   0       0
##      0.0000000203570784591136                   0                 0   0       0
##      0.0000000942663046181582                   0                 0   0       0
##      0.0381424863643358                         0                 0   0       0
##      0.0395235614826762                         0                 0   0       0
##      0.0398504564629362                         0                 0   0       0
##      0.0449831541922517                         0                 0   0       0
##      0.150208567676068                          0                 0   0       0
##      0.291704657263826                          0                 0   0       0
##      0.31263158525612                           0                 0   0       0
##      0.313581394222809                          0                 0   0       0
##      0.399450114450523                          0                 0   0       0
##      0.419739887455571                          0                 0   0       0
##      0.425358901761228                          0                 0   0       0
##      0.594035429893685                          0                 0   0       0
##      0.671638488556335                          0                 0   0       0
##      0.688092298985074                          0                 0   0       0
##      0.806600378227794                          0                 0   0       0
##      0.867455094638368                          0                 0   0       0
##      0.897003448844096                          0                 0   0       0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.639583333333333 0.907785087701754 1
##      0.000000000123720820519974                 0                 0 0
##      0.0000000142143709248919                   0                 0 0
##      0.0000000203570784591136                   0                 0 0
##      0.0000000942663046181582                   0                 0 0
##      0.0381424863643358                         0                 0 0
##      0.0395235614826762                         0                 0 0
##      0.0398504564629362                         0                 0 0
##      0.0449831541922517                         0                 0 0
##      0.150208567676068                          0                 0 0
##      0.291704657263826                          0                 0 0
##      0.31263158525612                           0                 0 0
##      0.313581394222809                          0                 0 0
##      0.399450114450523                          0                 0 0
##      0.419739887455571                          0                 0 0
##      0.425358901761228                          0                 0 0
##      0.594035429893685                          0                 0 0
##      0.671638488556335                          0                 0 0
##      0.688092298985074                          0                 0 0
##      0.806600378227794                          0                 0 0
##      0.867455094638368                          0                 0 0
##      0.897003448844096                          0                 0 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 1.34930555555556 4.020833333 6.15
##      0.000000000123720820519974                0           0    0
##      0.0000000142143709248919                  0           0    0
##      0.0000000203570784591136                  0           0    0
##      0.0000000942663046181582                  0           0    0
##      0.0381424863643358                        0           0    0
##      0.0395235614826762                        0           0    0
##      0.0398504564629362                        0           0    0
##      0.0449831541922517                        0           0    0
##      0.150208567676068                         0           0    0
##      0.291704657263826                         0           0    0
##      0.31263158525612                          0           0    0
##      0.313581394222809                         0           0    0
##      0.399450114450523                         0           0    0
##      0.419739887455571                         0           0    0
##      0.425358901761228                         0           0    0
##      0.594035429893685                         0           0    0
##      0.671638488556335                         0           0    0
##      0.688092298985074                         0           0    0
##      0.806600378227794                         0           0    0
##      0.867455094638368                         0           0    0
##      0.897003448844096                         0           0    0
## 
## , , OTT_Time = 3, Snapchat_Time = 3.83333333333333, Instagram_Time = 0.138888888888889
## 
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.125 0.142361111111111 0.152777777777778
##      0.000000000123720820519974     0                 0                 0
##      0.0000000142143709248919       0                 0                 0
##      0.0000000203570784591136       0                 0                 0
##      0.0000000942663046181582       0                 0                 0
##      0.0381424863643358             0                 0                 0
##      0.0395235614826762             0                 0                 0
##      0.0398504564629362             0                 0                 0
##      0.0449831541922517             0                 0                 0
##      0.150208567676068              0                 0                 0
##      0.291704657263826              0                 0                 0
##      0.31263158525612               0                 0                 0
##      0.313581394222809              0                 0                 0
##      0.399450114450523              0                 0                 0
##      0.419739887455571              0                 0                 0
##      0.425358901761228              0                 0                 0
##      0.594035429893685              0                 0                 0
##      0.671638488556335              0                 0                 0
##      0.688092298985074              0                 0                 0
##      0.806600378227794              0                 0                 0
##      0.867455094638368              0                 0                 0
##      0.897003448844096              0                 0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.174305555555556 0.208333333333333
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.220833333333333 0.25 0.270833333333333
##      0.000000000123720820519974                 0    0                 0
##      0.0000000142143709248919                   0    0                 0
##      0.0000000203570784591136                   0    0                 0
##      0.0000000942663046181582                   0    0                 0
##      0.0381424863643358                         0    0                 0
##      0.0395235614826762                         0    0                 0
##      0.0398504564629362                         0    0                 0
##      0.0449831541922517                         0    0                 0
##      0.150208567676068                          0    0                 0
##      0.291704657263826                          0    0                 0
##      0.31263158525612                           0    0                 0
##      0.313581394222809                          0    0                 0
##      0.399450114450523                          0    0                 0
##      0.419739887455571                          0    0                 0
##      0.425358901761228                          0    0                 0
##      0.594035429893685                          0    0                 0
##      0.671638488556335                          0    0                 0
##      0.688092298985074                          0    0                 0
##      0.806600378227794                          0    0                 0
##      0.867455094638368                          0    0                 0
##      0.897003448844096                          0    0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.289583333333333 0.371527777777778
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.409722222222222 0.416666666666667 0.5 0.55625
##      0.000000000123720820519974                 0                 0   0       0
##      0.0000000142143709248919                   0                 0   0       0
##      0.0000000203570784591136                   0                 0   0       0
##      0.0000000942663046181582                   0                 0   0       0
##      0.0381424863643358                         0                 0   0       0
##      0.0395235614826762                         0                 0   0       0
##      0.0398504564629362                         0                 0   0       0
##      0.0449831541922517                         0                 0   0       0
##      0.150208567676068                          0                 0   0       0
##      0.291704657263826                          0                 0   0       0
##      0.31263158525612                           0                 0   0       0
##      0.313581394222809                          0                 0   0       0
##      0.399450114450523                          0                 0   0       0
##      0.419739887455571                          0                 0   0       0
##      0.425358901761228                          0                 0   0       0
##      0.594035429893685                          0                 0   0       0
##      0.671638488556335                          0                 0   0       0
##      0.688092298985074                          0                 0   0       0
##      0.806600378227794                          0                 0   0       0
##      0.867455094638368                          0                 0   0       0
##      0.897003448844096                          0                 0   0       0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.639583333333333 0.907785087701754 1
##      0.000000000123720820519974                 0                 0 0
##      0.0000000142143709248919                   0                 0 0
##      0.0000000203570784591136                   0                 0 0
##      0.0000000942663046181582                   0                 0 0
##      0.0381424863643358                         0                 0 0
##      0.0395235614826762                         0                 0 0
##      0.0398504564629362                         0                 0 0
##      0.0449831541922517                         0                 0 0
##      0.150208567676068                          0                 0 0
##      0.291704657263826                          0                 0 0
##      0.31263158525612                           0                 0 0
##      0.313581394222809                          0                 0 0
##      0.399450114450523                          0                 0 0
##      0.419739887455571                          0                 0 0
##      0.425358901761228                          0                 0 0
##      0.594035429893685                          0                 0 0
##      0.671638488556335                          0                 0 0
##      0.688092298985074                          0                 0 0
##      0.806600378227794                          0                 0 0
##      0.867455094638368                          0                 0 0
##      0.897003448844096                          0                 0 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 1.34930555555556 4.020833333 6.15
##      0.000000000123720820519974                0           0    0
##      0.0000000142143709248919                  0           0    0
##      0.0000000203570784591136                  0           0    0
##      0.0000000942663046181582                  0           0    0
##      0.0381424863643358                        0           0    0
##      0.0395235614826762                        0           0    0
##      0.0398504564629362                        0           0    0
##      0.0449831541922517                        0           0    0
##      0.150208567676068                         0           0    0
##      0.291704657263826                         0           0    0
##      0.31263158525612                          0           0    0
##      0.313581394222809                         0           0    0
##      0.399450114450523                         0           0    0
##      0.419739887455571                         0           0    0
##      0.425358901761228                         0           0    0
##      0.594035429893685                         0           0    0
##      0.671638488556335                         0           0    0
##      0.688092298985074                         0           0    0
##      0.806600378227794                         0           0    0
##      0.867455094638368                         0           0    0
##      0.897003448844096                         0           0    0
## 
## , , OTT_Time = 14.5, Snapchat_Time = 3.83333333333333, Instagram_Time = 0.138888888888889
## 
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.125 0.142361111111111 0.152777777777778
##      0.000000000123720820519974     0                 0                 0
##      0.0000000142143709248919       0                 0                 0
##      0.0000000203570784591136       0                 0                 0
##      0.0000000942663046181582       0                 0                 0
##      0.0381424863643358             0                 0                 0
##      0.0395235614826762             0                 0                 0
##      0.0398504564629362             0                 0                 0
##      0.0449831541922517             0                 0                 0
##      0.150208567676068              0                 0                 0
##      0.291704657263826              0                 0                 0
##      0.31263158525612               0                 0                 0
##      0.313581394222809              0                 0                 0
##      0.399450114450523              0                 0                 0
##      0.419739887455571              0                 0                 0
##      0.425358901761228              0                 0                 0
##      0.594035429893685              0                 0                 0
##      0.671638488556335              0                 0                 0
##      0.688092298985074              0                 0                 0
##      0.806600378227794              0                 0                 0
##      0.867455094638368              0                 0                 0
##      0.897003448844096              0                 0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.174305555555556 0.208333333333333
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.220833333333333 0.25 0.270833333333333
##      0.000000000123720820519974                 0    0                 0
##      0.0000000142143709248919                   0    0                 0
##      0.0000000203570784591136                   0    0                 0
##      0.0000000942663046181582                   0    0                 0
##      0.0381424863643358                         0    0                 0
##      0.0395235614826762                         0    0                 0
##      0.0398504564629362                         0    0                 0
##      0.0449831541922517                         0    0                 0
##      0.150208567676068                          0    0                 0
##      0.291704657263826                          0    0                 0
##      0.31263158525612                           0    0                 0
##      0.313581394222809                          0    0                 0
##      0.399450114450523                          0    0                 0
##      0.419739887455571                          0    0                 0
##      0.425358901761228                          0    0                 0
##      0.594035429893685                          0    0                 0
##      0.671638488556335                          0    0                 0
##      0.688092298985074                          0    0                 0
##      0.806600378227794                          0    0                 0
##      0.867455094638368                          0    0                 0
##      0.897003448844096                          0    0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.289583333333333 0.371527777777778
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.409722222222222 0.416666666666667 0.5 0.55625
##      0.000000000123720820519974                 0                 0   0       0
##      0.0000000142143709248919                   0                 0   0       0
##      0.0000000203570784591136                   0                 0   0       0
##      0.0000000942663046181582                   0                 0   0       0
##      0.0381424863643358                         0                 0   0       0
##      0.0395235614826762                         0                 0   0       0
##      0.0398504564629362                         0                 0   0       0
##      0.0449831541922517                         0                 0   0       0
##      0.150208567676068                          0                 0   0       0
##      0.291704657263826                          0                 0   0       0
##      0.31263158525612                           0                 0   0       0
##      0.313581394222809                          0                 0   0       0
##      0.399450114450523                          0                 0   0       0
##      0.419739887455571                          0                 0   0       0
##      0.425358901761228                          0                 0   0       0
##      0.594035429893685                          0                 0   0       0
##      0.671638488556335                          0                 0   0       0
##      0.688092298985074                          0                 0   0       0
##      0.806600378227794                          0                 0   0       0
##      0.867455094638368                          0                 0   0       0
##      0.897003448844096                          0                 0   0       0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.639583333333333 0.907785087701754 1
##      0.000000000123720820519974                 0                 0 0
##      0.0000000142143709248919                   0                 0 0
##      0.0000000203570784591136                   0                 0 0
##      0.0000000942663046181582                   0                 0 0
##      0.0381424863643358                         0                 0 0
##      0.0395235614826762                         0                 0 0
##      0.0398504564629362                         0                 0 0
##      0.0449831541922517                         0                 0 0
##      0.150208567676068                          0                 0 0
##      0.291704657263826                          0                 0 0
##      0.31263158525612                           0                 0 0
##      0.313581394222809                          0                 0 0
##      0.399450114450523                          0                 0 0
##      0.419739887455571                          0                 0 0
##      0.425358901761228                          0                 0 0
##      0.594035429893685                          0                 0 0
##      0.671638488556335                          0                 0 0
##      0.688092298985074                          0                 0 0
##      0.806600378227794                          0                 0 0
##      0.867455094638368                          0                 0 0
##      0.897003448844096                          0                 0 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 1.34930555555556 4.020833333 6.15
##      0.000000000123720820519974                0           0    0
##      0.0000000142143709248919                  0           0    0
##      0.0000000203570784591136                  0           0    0
##      0.0000000942663046181582                  0           0    0
##      0.0381424863643358                        0           0    0
##      0.0395235614826762                        0           0    0
##      0.0398504564629362                        0           0    0
##      0.0449831541922517                        0           0    0
##      0.150208567676068                         0           0    0
##      0.291704657263826                         0           0    0
##      0.31263158525612                          0           0    0
##      0.313581394222809                         0           0    0
##      0.399450114450523                         0           0    0
##      0.419739887455571                         0           0    0
##      0.425358901761228                         0           0    0
##      0.594035429893685                         0           0    0
##      0.671638488556335                         0           0    0
##      0.688092298985074                         0           0    0
##      0.806600378227794                         0           0    0
##      0.867455094638368                         0           0    0
##      0.897003448844096                         0           0    0
## 
## , , OTT_Time = 0, Snapchat_Time = 0, Instagram_Time = 0.156944444444444
## 
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.125 0.142361111111111 0.152777777777778
##      0.000000000123720820519974     0                 0                 0
##      0.0000000142143709248919       0                 0                 0
##      0.0000000203570784591136       0                 0                 0
##      0.0000000942663046181582       0                 0                 0
##      0.0381424863643358             0                 0                 0
##      0.0395235614826762             0                 0                 0
##      0.0398504564629362             0                 0                 0
##      0.0449831541922517             0                 0                 0
##      0.150208567676068              0                 0                 0
##      0.291704657263826              0                 0                 0
##      0.31263158525612               0                 0                 0
##      0.313581394222809              0                 0                 0
##      0.399450114450523              0                 0                 0
##      0.419739887455571              0                 0                 0
##      0.425358901761228              0                 0                 0
##      0.594035429893685              0                 0                 0
##      0.671638488556335              0                 0                 0
##      0.688092298985074              0                 0                 0
##      0.806600378227794              0                 0                 0
##      0.867455094638368              0                 0                 0
##      0.897003448844096              0                 0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.174305555555556 0.208333333333333
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.220833333333333 0.25 0.270833333333333
##      0.000000000123720820519974                 0    0                 0
##      0.0000000142143709248919                   0    0                 0
##      0.0000000203570784591136                   0    0                 0
##      0.0000000942663046181582                   0    0                 0
##      0.0381424863643358                         0    0                 0
##      0.0395235614826762                         0    0                 0
##      0.0398504564629362                         0    0                 0
##      0.0449831541922517                         0    0                 0
##      0.150208567676068                          0    0                 0
##      0.291704657263826                          0    0                 0
##      0.31263158525612                           0    0                 0
##      0.313581394222809                          0    0                 0
##      0.399450114450523                          0    0                 0
##      0.419739887455571                          0    0                 0
##      0.425358901761228                          0    0                 0
##      0.594035429893685                          0    0                 0
##      0.671638488556335                          0    0                 0
##      0.688092298985074                          0    0                 0
##      0.806600378227794                          0    0                 0
##      0.867455094638368                          0    0                 0
##      0.897003448844096                          0    0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.289583333333333 0.371527777777778
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.409722222222222 0.416666666666667 0.5 0.55625
##      0.000000000123720820519974                 0                 0   0       0
##      0.0000000142143709248919                   0                 0   0       0
##      0.0000000203570784591136                   0                 0   0       0
##      0.0000000942663046181582                   0                 0   0       0
##      0.0381424863643358                         0                 0   0       0
##      0.0395235614826762                         0                 0   0       0
##      0.0398504564629362                         0                 0   0       0
##      0.0449831541922517                         0                 0   0       0
##      0.150208567676068                          0                 0   0       0
##      0.291704657263826                          0                 0   0       0
##      0.31263158525612                           0                 0   0       0
##      0.313581394222809                          0                 0   0       0
##      0.399450114450523                          0                 0   0       0
##      0.419739887455571                          0                 0   0       0
##      0.425358901761228                          0                 0   0       0
##      0.594035429893685                          0                 0   0       0
##      0.671638488556335                          0                 0   0       0
##      0.688092298985074                          0                 0   0       0
##      0.806600378227794                          0                 0   0       0
##      0.867455094638368                          0                 0   0       0
##      0.897003448844096                          0                 0   0       0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.639583333333333 0.907785087701754 1
##      0.000000000123720820519974                 0                 0 0
##      0.0000000142143709248919                   0                 0 0
##      0.0000000203570784591136                   0                 0 0
##      0.0000000942663046181582                   0                 0 0
##      0.0381424863643358                         0                 0 0
##      0.0395235614826762                         0                 0 0
##      0.0398504564629362                         0                 0 0
##      0.0449831541922517                         0                 0 0
##      0.150208567676068                          0                 0 0
##      0.291704657263826                          0                 0 0
##      0.31263158525612                           0                 0 0
##      0.313581394222809                          0                 0 0
##      0.399450114450523                          0                 0 0
##      0.419739887455571                          0                 0 0
##      0.425358901761228                          0                 0 0
##      0.594035429893685                          0                 0 0
##      0.671638488556335                          0                 0 0
##      0.688092298985074                          0                 0 0
##      0.806600378227794                          0                 0 0
##      0.867455094638368                          0                 0 0
##      0.897003448844096                          0                 0 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 1.34930555555556 4.020833333 6.15
##      0.000000000123720820519974                0           0    0
##      0.0000000142143709248919                  0           0    0
##      0.0000000203570784591136                  0           0    0
##      0.0000000942663046181582                  0           0    0
##      0.0381424863643358                        0           0    0
##      0.0395235614826762                        0           0    0
##      0.0398504564629362                        0           0    0
##      0.0449831541922517                        0           0    0
##      0.150208567676068                         0           0    0
##      0.291704657263826                         0           0    0
##      0.31263158525612                          0           0    0
##      0.313581394222809                         0           0    0
##      0.399450114450523                         0           0    0
##      0.419739887455571                         0           0    0
##      0.425358901761228                         0           0    0
##      0.594035429893685                         0           0    0
##      0.671638488556335                         0           0    0
##      0.688092298985074                         0           0    0
##      0.806600378227794                         0           0    0
##      0.867455094638368                         0           0    0
##      0.897003448844096                         0           0    0
## 
## , , OTT_Time = 0.102777777777778, Snapchat_Time = 0, Instagram_Time = 0.156944444444444
## 
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.125 0.142361111111111 0.152777777777778
##      0.000000000123720820519974     0                 0                 0
##      0.0000000142143709248919       0                 0                 0
##      0.0000000203570784591136       0                 0                 0
##      0.0000000942663046181582       0                 0                 0
##      0.0381424863643358             0                 0                 0
##      0.0395235614826762             0                 0                 0
##      0.0398504564629362             0                 0                 0
##      0.0449831541922517             0                 0                 0
##      0.150208567676068              0                 0                 0
##      0.291704657263826              0                 0                 0
##      0.31263158525612               0                 0                 0
##      0.313581394222809              0                 0                 0
##      0.399450114450523              0                 0                 0
##      0.419739887455571              0                 0                 0
##      0.425358901761228              0                 0                 0
##      0.594035429893685              0                 0                 0
##      0.671638488556335              0                 0                 0
##      0.688092298985074              0                 0                 0
##      0.806600378227794              0                 0                 0
##      0.867455094638368              0                 0                 0
##      0.897003448844096              0                 0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.174305555555556 0.208333333333333
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.220833333333333 0.25 0.270833333333333
##      0.000000000123720820519974                 0    0                 0
##      0.0000000142143709248919                   0    0                 0
##      0.0000000203570784591136                   0    0                 0
##      0.0000000942663046181582                   0    0                 0
##      0.0381424863643358                         0    0                 0
##      0.0395235614826762                         0    0                 0
##      0.0398504564629362                         0    0                 0
##      0.0449831541922517                         0    0                 0
##      0.150208567676068                          0    0                 0
##      0.291704657263826                          0    0                 0
##      0.31263158525612                           0    0                 0
##      0.313581394222809                          0    0                 0
##      0.399450114450523                          0    0                 0
##      0.419739887455571                          0    0                 0
##      0.425358901761228                          0    0                 0
##      0.594035429893685                          0    0                 0
##      0.671638488556335                          0    0                 0
##      0.688092298985074                          0    0                 0
##      0.806600378227794                          0    0                 0
##      0.867455094638368                          0    0                 0
##      0.897003448844096                          0    0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.289583333333333 0.371527777777778
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.409722222222222 0.416666666666667 0.5 0.55625
##      0.000000000123720820519974                 0                 0   0       0
##      0.0000000142143709248919                   0                 0   0       0
##      0.0000000203570784591136                   0                 0   0       0
##      0.0000000942663046181582                   0                 0   0       0
##      0.0381424863643358                         0                 0   0       0
##      0.0395235614826762                         0                 0   0       0
##      0.0398504564629362                         0                 0   0       0
##      0.0449831541922517                         0                 0   0       0
##      0.150208567676068                          0                 0   0       0
##      0.291704657263826                          0                 0   0       0
##      0.31263158525612                           0                 0   0       0
##      0.313581394222809                          0                 0   0       0
##      0.399450114450523                          0                 0   0       0
##      0.419739887455571                          0                 0   0       0
##      0.425358901761228                          0                 0   0       0
##      0.594035429893685                          0                 0   0       0
##      0.671638488556335                          0                 0   0       0
##      0.688092298985074                          0                 0   0       0
##      0.806600378227794                          0                 0   0       0
##      0.867455094638368                          0                 0   0       0
##      0.897003448844096                          0                 0   0       0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.639583333333333 0.907785087701754 1
##      0.000000000123720820519974                 0                 0 0
##      0.0000000142143709248919                   0                 0 0
##      0.0000000203570784591136                   0                 0 0
##      0.0000000942663046181582                   0                 0 0
##      0.0381424863643358                         0                 0 0
##      0.0395235614826762                         0                 0 0
##      0.0398504564629362                         0                 0 0
##      0.0449831541922517                         0                 0 0
##      0.150208567676068                          0                 0 0
##      0.291704657263826                          0                 0 0
##      0.31263158525612                           0                 0 0
##      0.313581394222809                          0                 0 0
##      0.399450114450523                          0                 0 0
##      0.419739887455571                          0                 0 0
##      0.425358901761228                          0                 0 0
##      0.594035429893685                          0                 0 0
##      0.671638488556335                          0                 0 0
##      0.688092298985074                          0                 0 0
##      0.806600378227794                          0                 0 0
##      0.867455094638368                          0                 0 0
##      0.897003448844096                          0                 0 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 1.34930555555556 4.020833333 6.15
##      0.000000000123720820519974                0           0    0
##      0.0000000142143709248919                  0           0    0
##      0.0000000203570784591136                  0           0    0
##      0.0000000942663046181582                  0           0    0
##      0.0381424863643358                        0           0    0
##      0.0395235614826762                        0           0    0
##      0.0398504564629362                        0           0    0
##      0.0449831541922517                        0           0    0
##      0.150208567676068                         0           0    0
##      0.291704657263826                         0           0    0
##      0.31263158525612                          0           0    0
##      0.313581394222809                         0           0    0
##      0.399450114450523                         0           0    0
##      0.419739887455571                         0           0    0
##      0.425358901761228                         0           0    0
##      0.594035429893685                         0           0    0
##      0.671638488556335                         0           0    0
##      0.688092298985074                         0           0    0
##      0.806600378227794                         0           0    0
##      0.867455094638368                         0           0    0
##      0.897003448844096                         0           0    0
## 
## , , OTT_Time = 0.125, Snapchat_Time = 0, Instagram_Time = 0.156944444444444
## 
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.125 0.142361111111111 0.152777777777778
##      0.000000000123720820519974     0                 0                 0
##      0.0000000142143709248919       0                 0                 0
##      0.0000000203570784591136       0                 0                 0
##      0.0000000942663046181582       0                 0                 0
##      0.0381424863643358             0                 0                 0
##      0.0395235614826762             0                 0                 0
##      0.0398504564629362             0                 0                 0
##      0.0449831541922517             0                 0                 0
##      0.150208567676068              0                 0                 0
##      0.291704657263826              0                 0                 0
##      0.31263158525612               0                 0                 0
##      0.313581394222809              0                 0                 0
##      0.399450114450523              0                 0                 0
##      0.419739887455571              0                 0                 0
##      0.425358901761228              0                 0                 0
##      0.594035429893685              0                 0                 0
##      0.671638488556335              0                 0                 0
##      0.688092298985074              0                 0                 0
##      0.806600378227794              0                 0                 0
##      0.867455094638368              0                 0                 0
##      0.897003448844096              0                 0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.174305555555556 0.208333333333333
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.220833333333333 0.25 0.270833333333333
##      0.000000000123720820519974                 0    0                 0
##      0.0000000142143709248919                   0    0                 0
##      0.0000000203570784591136                   0    0                 0
##      0.0000000942663046181582                   0    0                 0
##      0.0381424863643358                         0    0                 0
##      0.0395235614826762                         0    0                 0
##      0.0398504564629362                         0    0                 0
##      0.0449831541922517                         0    0                 0
##      0.150208567676068                          0    0                 0
##      0.291704657263826                          0    0                 0
##      0.31263158525612                           0    0                 0
##      0.313581394222809                          0    0                 0
##      0.399450114450523                          0    0                 0
##      0.419739887455571                          0    0                 0
##      0.425358901761228                          0    0                 0
##      0.594035429893685                          0    0                 0
##      0.671638488556335                          0    0                 0
##      0.688092298985074                          0    0                 0
##      0.806600378227794                          0    0                 0
##      0.867455094638368                          0    0                 0
##      0.897003448844096                          0    0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.289583333333333 0.371527777777778
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.409722222222222 0.416666666666667 0.5 0.55625
##      0.000000000123720820519974                 0                 0   0       0
##      0.0000000142143709248919                   0                 0   0       0
##      0.0000000203570784591136                   0                 0   0       0
##      0.0000000942663046181582                   0                 0   0       0
##      0.0381424863643358                         0                 0   0       0
##      0.0395235614826762                         0                 0   0       0
##      0.0398504564629362                         0                 0   0       0
##      0.0449831541922517                         0                 0   0       0
##      0.150208567676068                          0                 0   0       0
##      0.291704657263826                          0                 0   0       0
##      0.31263158525612                           0                 0   0       0
##      0.313581394222809                          0                 0   0       0
##      0.399450114450523                          0                 0   0       0
##      0.419739887455571                          0                 0   0       0
##      0.425358901761228                          0                 0   0       0
##      0.594035429893685                          0                 0   0       0
##      0.671638488556335                          0                 0   0       0
##      0.688092298985074                          0                 0   0       0
##      0.806600378227794                          0                 0   0       0
##      0.867455094638368                          0                 0   0       0
##      0.897003448844096                          0                 0   0       0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.639583333333333 0.907785087701754 1
##      0.000000000123720820519974                 0                 0 0
##      0.0000000142143709248919                   0                 0 0
##      0.0000000203570784591136                   0                 0 0
##      0.0000000942663046181582                   0                 0 0
##      0.0381424863643358                         0                 0 0
##      0.0395235614826762                         0                 0 0
##      0.0398504564629362                         0                 0 0
##      0.0449831541922517                         0                 0 0
##      0.150208567676068                          0                 0 0
##      0.291704657263826                          0                 0 0
##      0.31263158525612                           0                 0 0
##      0.313581394222809                          0                 0 0
##      0.399450114450523                          0                 0 0
##      0.419739887455571                          0                 0 0
##      0.425358901761228                          0                 0 0
##      0.594035429893685                          0                 0 0
##      0.671638488556335                          0                 0 0
##      0.688092298985074                          0                 0 0
##      0.806600378227794                          0                 0 0
##      0.867455094638368                          0                 0 0
##      0.897003448844096                          0                 0 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 1.34930555555556 4.020833333 6.15
##      0.000000000123720820519974                0           0    0
##      0.0000000142143709248919                  0           0    0
##      0.0000000203570784591136                  0           0    0
##      0.0000000942663046181582                  0           0    0
##      0.0381424863643358                        0           0    0
##      0.0395235614826762                        0           0    0
##      0.0398504564629362                        0           0    0
##      0.0449831541922517                        0           0    0
##      0.150208567676068                         0           0    0
##      0.291704657263826                         0           0    0
##      0.31263158525612                          0           0    0
##      0.313581394222809                         0           0    0
##      0.399450114450523                         0           0    0
##      0.419739887455571                         0           0    0
##      0.425358901761228                         0           0    0
##      0.594035429893685                         0           0    0
##      0.671638488556335                         0           0    0
##      0.688092298985074                         0           0    0
##      0.806600378227794                         0           0    0
##      0.867455094638368                         0           0    0
##      0.897003448844096                         0           0    0
## 
## , , OTT_Time = 0.416666666666667, Snapchat_Time = 0, Instagram_Time = 0.156944444444444
## 
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.125 0.142361111111111 0.152777777777778
##      0.000000000123720820519974     0                 0                 0
##      0.0000000142143709248919       0                 0                 0
##      0.0000000203570784591136       0                 0                 0
##      0.0000000942663046181582       0                 0                 0
##      0.0381424863643358             0                 0                 0
##      0.0395235614826762             0                 0                 0
##      0.0398504564629362             0                 0                 0
##      0.0449831541922517             0                 0                 0
##      0.150208567676068              0                 0                 0
##      0.291704657263826              0                 0                 0
##      0.31263158525612               0                 0                 0
##      0.313581394222809              0                 0                 0
##      0.399450114450523              0                 0                 0
##      0.419739887455571              0                 0                 0
##      0.425358901761228              0                 0                 0
##      0.594035429893685              0                 0                 0
##      0.671638488556335              0                 0                 0
##      0.688092298985074              0                 0                 0
##      0.806600378227794              0                 0                 0
##      0.867455094638368              0                 0                 0
##      0.897003448844096              0                 0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.174305555555556 0.208333333333333
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.220833333333333 0.25 0.270833333333333
##      0.000000000123720820519974                 0    0                 0
##      0.0000000142143709248919                   0    0                 0
##      0.0000000203570784591136                   0    0                 0
##      0.0000000942663046181582                   0    0                 0
##      0.0381424863643358                         0    0                 0
##      0.0395235614826762                         0    0                 0
##      0.0398504564629362                         0    0                 0
##      0.0449831541922517                         0    0                 0
##      0.150208567676068                          0    0                 0
##      0.291704657263826                          0    0                 0
##      0.31263158525612                           0    0                 0
##      0.313581394222809                          0    0                 0
##      0.399450114450523                          0    0                 0
##      0.419739887455571                          0    0                 0
##      0.425358901761228                          0    0                 0
##      0.594035429893685                          0    0                 0
##      0.671638488556335                          0    0                 0
##      0.688092298985074                          0    0                 0
##      0.806600378227794                          0    0                 0
##      0.867455094638368                          0    0                 0
##      0.897003448844096                          0    0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.289583333333333 0.371527777777778
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.409722222222222 0.416666666666667 0.5 0.55625
##      0.000000000123720820519974                 0                 0   0       0
##      0.0000000142143709248919                   0                 0   0       0
##      0.0000000203570784591136                   0                 0   0       0
##      0.0000000942663046181582                   0                 0   0       0
##      0.0381424863643358                         0                 0   0       0
##      0.0395235614826762                         0                 0   0       0
##      0.0398504564629362                         0                 0   0       0
##      0.0449831541922517                         0                 0   0       0
##      0.150208567676068                          0                 0   0       0
##      0.291704657263826                          0                 0   0       0
##      0.31263158525612                           0                 0   0       0
##      0.313581394222809                          0                 0   0       0
##      0.399450114450523                          0                 0   0       0
##      0.419739887455571                          0                 0   0       0
##      0.425358901761228                          0                 0   0       0
##      0.594035429893685                          0                 0   0       0
##      0.671638488556335                          0                 0   0       0
##      0.688092298985074                          0                 0   0       0
##      0.806600378227794                          0                 0   0       0
##      0.867455094638368                          0                 0   0       0
##      0.897003448844096                          0                 0   0       0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.639583333333333 0.907785087701754 1
##      0.000000000123720820519974                 0                 0 0
##      0.0000000142143709248919                   0                 0 0
##      0.0000000203570784591136                   0                 0 0
##      0.0000000942663046181582                   0                 0 0
##      0.0381424863643358                         0                 0 0
##      0.0395235614826762                         0                 0 0
##      0.0398504564629362                         0                 0 0
##      0.0449831541922517                         0                 0 0
##      0.150208567676068                          0                 0 0
##      0.291704657263826                          0                 0 0
##      0.31263158525612                           0                 0 0
##      0.313581394222809                          0                 0 0
##      0.399450114450523                          0                 0 0
##      0.419739887455571                          0                 0 0
##      0.425358901761228                          0                 0 0
##      0.594035429893685                          0                 0 0
##      0.671638488556335                          0                 0 0
##      0.688092298985074                          0                 0 0
##      0.806600378227794                          0                 0 0
##      0.867455094638368                          0                 0 0
##      0.897003448844096                          0                 0 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 1.34930555555556 4.020833333 6.15
##      0.000000000123720820519974                0           0    0
##      0.0000000142143709248919                  0           0    0
##      0.0000000203570784591136                  0           0    0
##      0.0000000942663046181582                  0           0    0
##      0.0381424863643358                        0           0    0
##      0.0395235614826762                        0           0    0
##      0.0398504564629362                        0           0    0
##      0.0449831541922517                        0           0    0
##      0.150208567676068                         0           0    0
##      0.291704657263826                         0           0    0
##      0.31263158525612                          0           0    0
##      0.313581394222809                         0           0    0
##      0.399450114450523                         0           0    0
##      0.419739887455571                         0           0    0
##      0.425358901761228                         0           0    0
##      0.594035429893685                         0           0    0
##      0.671638488556335                         0           0    0
##      0.688092298985074                         0           0    0
##      0.806600378227794                         0           0    0
##      0.867455094638368                         0           0    0
##      0.897003448844096                         0           0    0
## 
## , , OTT_Time = 0.5104166667, Snapchat_Time = 0, Instagram_Time = 0.156944444444444
## 
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.125 0.142361111111111 0.152777777777778
##      0.000000000123720820519974     0                 0                 0
##      0.0000000142143709248919       0                 0                 0
##      0.0000000203570784591136       0                 0                 0
##      0.0000000942663046181582       0                 0                 0
##      0.0381424863643358             0                 0                 0
##      0.0395235614826762             0                 0                 0
##      0.0398504564629362             0                 0                 0
##      0.0449831541922517             0                 0                 0
##      0.150208567676068              0                 0                 0
##      0.291704657263826              0                 0                 0
##      0.31263158525612               0                 0                 0
##      0.313581394222809              0                 0                 0
##      0.399450114450523              0                 0                 0
##      0.419739887455571              0                 0                 0
##      0.425358901761228              0                 0                 0
##      0.594035429893685              0                 0                 0
##      0.671638488556335              0                 0                 0
##      0.688092298985074              0                 0                 0
##      0.806600378227794              0                 0                 0
##      0.867455094638368              0                 0                 0
##      0.897003448844096              0                 0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.174305555555556 0.208333333333333
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.220833333333333 0.25 0.270833333333333
##      0.000000000123720820519974                 0    0                 0
##      0.0000000142143709248919                   0    0                 0
##      0.0000000203570784591136                   0    0                 0
##      0.0000000942663046181582                   0    0                 0
##      0.0381424863643358                         0    0                 0
##      0.0395235614826762                         0    0                 0
##      0.0398504564629362                         0    0                 0
##      0.0449831541922517                         0    0                 0
##      0.150208567676068                          0    0                 0
##      0.291704657263826                          0    0                 0
##      0.31263158525612                           0    0                 0
##      0.313581394222809                          0    0                 0
##      0.399450114450523                          0    0                 0
##      0.419739887455571                          0    0                 0
##      0.425358901761228                          0    0                 0
##      0.594035429893685                          0    0                 0
##      0.671638488556335                          0    0                 0
##      0.688092298985074                          0    0                 0
##      0.806600378227794                          0    0                 0
##      0.867455094638368                          0    0                 0
##      0.897003448844096                          0    0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.289583333333333 0.371527777777778
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.409722222222222 0.416666666666667 0.5 0.55625
##      0.000000000123720820519974                 0                 0   0       0
##      0.0000000142143709248919                   0                 0   0       0
##      0.0000000203570784591136                   0                 0   0       0
##      0.0000000942663046181582                   0                 0   0       0
##      0.0381424863643358                         0                 0   0       0
##      0.0395235614826762                         0                 0   0       0
##      0.0398504564629362                         0                 0   0       0
##      0.0449831541922517                         0                 0   0       0
##      0.150208567676068                          0                 0   0       0
##      0.291704657263826                          0                 0   0       0
##      0.31263158525612                           0                 0   0       0
##      0.313581394222809                          0                 0   0       0
##      0.399450114450523                          0                 0   0       0
##      0.419739887455571                          0                 0   0       0
##      0.425358901761228                          0                 0   0       0
##      0.594035429893685                          0                 0   0       0
##      0.671638488556335                          0                 0   0       0
##      0.688092298985074                          0                 0   0       0
##      0.806600378227794                          0                 0   0       0
##      0.867455094638368                          0                 0   0       0
##      0.897003448844096                          0                 0   0       0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.639583333333333 0.907785087701754 1
##      0.000000000123720820519974                 0                 0 0
##      0.0000000142143709248919                   0                 0 0
##      0.0000000203570784591136                   0                 0 0
##      0.0000000942663046181582                   0                 0 0
##      0.0381424863643358                         0                 0 0
##      0.0395235614826762                         0                 0 0
##      0.0398504564629362                         0                 0 0
##      0.0449831541922517                         0                 0 0
##      0.150208567676068                          0                 0 0
##      0.291704657263826                          0                 0 0
##      0.31263158525612                           0                 0 0
##      0.313581394222809                          0                 0 0
##      0.399450114450523                          0                 0 0
##      0.419739887455571                          0                 0 0
##      0.425358901761228                          0                 0 0
##      0.594035429893685                          0                 0 0
##      0.671638488556335                          0                 0 0
##      0.688092298985074                          0                 0 0
##      0.806600378227794                          0                 0 0
##      0.867455094638368                          0                 0 0
##      0.897003448844096                          0                 0 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 1.34930555555556 4.020833333 6.15
##      0.000000000123720820519974                0           0    0
##      0.0000000142143709248919                  0           0    0
##      0.0000000203570784591136                  0           0    0
##      0.0000000942663046181582                  0           0    0
##      0.0381424863643358                        0           0    0
##      0.0395235614826762                        0           0    0
##      0.0398504564629362                        0           0    0
##      0.0449831541922517                        0           0    0
##      0.150208567676068                         0           0    0
##      0.291704657263826                         0           0    0
##      0.31263158525612                          0           0    0
##      0.313581394222809                         0           0    0
##      0.399450114450523                         0           0    0
##      0.419739887455571                         0           0    0
##      0.425358901761228                         0           0    0
##      0.594035429893685                         0           0    0
##      0.671638488556335                         0           0    0
##      0.688092298985074                         0           0    0
##      0.806600378227794                         0           0    0
##      0.867455094638368                         0           0    0
##      0.897003448844096                         0           0    0
## 
## , , OTT_Time = 1.44460470085726, Snapchat_Time = 0, Instagram_Time = 0.156944444444444
## 
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.125 0.142361111111111 0.152777777777778
##      0.000000000123720820519974     0                 0                 0
##      0.0000000142143709248919       0                 0                 0
##      0.0000000203570784591136       0                 0                 0
##      0.0000000942663046181582       0                 0                 0
##      0.0381424863643358             0                 0                 0
##      0.0395235614826762             0                 0                 0
##      0.0398504564629362             0                 0                 0
##      0.0449831541922517             0                 0                 0
##      0.150208567676068              0                 0                 0
##      0.291704657263826              0                 0                 0
##      0.31263158525612               0                 0                 0
##      0.313581394222809              0                 0                 0
##      0.399450114450523              0                 0                 0
##      0.419739887455571              0                 0                 0
##      0.425358901761228              0                 0                 0
##      0.594035429893685              0                 0                 0
##      0.671638488556335              0                 0                 0
##      0.688092298985074              0                 0                 0
##      0.806600378227794              0                 0                 0
##      0.867455094638368              0                 0                 0
##      0.897003448844096              0                 0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.174305555555556 0.208333333333333
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.220833333333333 0.25 0.270833333333333
##      0.000000000123720820519974                 0    0                 0
##      0.0000000142143709248919                   0    0                 0
##      0.0000000203570784591136                   0    0                 0
##      0.0000000942663046181582                   0    0                 0
##      0.0381424863643358                         0    0                 0
##      0.0395235614826762                         0    0                 0
##      0.0398504564629362                         0    0                 0
##      0.0449831541922517                         0    0                 0
##      0.150208567676068                          0    0                 0
##      0.291704657263826                          0    0                 0
##      0.31263158525612                           0    0                 0
##      0.313581394222809                          0    0                 0
##      0.399450114450523                          0    0                 0
##      0.419739887455571                          0    0                 0
##      0.425358901761228                          0    0                 0
##      0.594035429893685                          0    0                 0
##      0.671638488556335                          0    0                 0
##      0.688092298985074                          0    0                 0
##      0.806600378227794                          0    0                 0
##      0.867455094638368                          0    0                 0
##      0.897003448844096                          0    0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.289583333333333 0.371527777777778
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.409722222222222 0.416666666666667 0.5 0.55625
##      0.000000000123720820519974                 0                 0   0       0
##      0.0000000142143709248919                   0                 0   0       0
##      0.0000000203570784591136                   0                 0   0       0
##      0.0000000942663046181582                   0                 0   0       0
##      0.0381424863643358                         0                 0   0       0
##      0.0395235614826762                         0                 0   0       0
##      0.0398504564629362                         0                 0   0       0
##      0.0449831541922517                         0                 0   0       0
##      0.150208567676068                          0                 0   0       0
##      0.291704657263826                          0                 0   0       0
##      0.31263158525612                           0                 0   0       0
##      0.313581394222809                          0                 0   0       0
##      0.399450114450523                          0                 0   0       0
##      0.419739887455571                          0                 0   0       0
##      0.425358901761228                          0                 0   0       0
##      0.594035429893685                          0                 0   0       0
##      0.671638488556335                          0                 0   0       0
##      0.688092298985074                          0                 0   0       0
##      0.806600378227794                          0                 0   0       0
##      0.867455094638368                          0                 0   0       0
##      0.897003448844096                          0                 0   0       0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.639583333333333 0.907785087701754 1
##      0.000000000123720820519974                 0                 0 0
##      0.0000000142143709248919                   0                 0 0
##      0.0000000203570784591136                   0                 0 0
##      0.0000000942663046181582                   0                 0 0
##      0.0381424863643358                         0                 0 0
##      0.0395235614826762                         0                 0 0
##      0.0398504564629362                         0                 0 0
##      0.0449831541922517                         0                 0 0
##      0.150208567676068                          0                 0 0
##      0.291704657263826                          0                 0 0
##      0.31263158525612                           0                 0 0
##      0.313581394222809                          0                 0 0
##      0.399450114450523                          0                 0 0
##      0.419739887455571                          0                 0 0
##      0.425358901761228                          0                 0 0
##      0.594035429893685                          0                 0 0
##      0.671638488556335                          0                 0 0
##      0.688092298985074                          0                 0 0
##      0.806600378227794                          0                 0 0
##      0.867455094638368                          0                 0 0
##      0.897003448844096                          0                 0 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 1.34930555555556 4.020833333 6.15
##      0.000000000123720820519974                0           0    0
##      0.0000000142143709248919                  0           0    0
##      0.0000000203570784591136                  0           0    0
##      0.0000000942663046181582                  0           0    0
##      0.0381424863643358                        0           0    0
##      0.0395235614826762                        0           0    0
##      0.0398504564629362                        0           0    0
##      0.0449831541922517                        0           0    0
##      0.150208567676068                         0           0    0
##      0.291704657263826                         0           0    0
##      0.31263158525612                          0           0    0
##      0.313581394222809                         0           0    0
##      0.399450114450523                         0           0    0
##      0.419739887455571                         0           0    0
##      0.425358901761228                         0           0    0
##      0.594035429893685                         0           0    0
##      0.671638488556335                         0           0    0
##      0.688092298985074                         0           0    0
##      0.806600378227794                         0           0    0
##      0.867455094638368                         0           0    0
##      0.897003448844096                         0           0    0
## 
## , , OTT_Time = 3, Snapchat_Time = 0, Instagram_Time = 0.156944444444444
## 
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.125 0.142361111111111 0.152777777777778
##      0.000000000123720820519974     0                 0                 0
##      0.0000000142143709248919       0                 0                 0
##      0.0000000203570784591136       0                 0                 0
##      0.0000000942663046181582       0                 0                 0
##      0.0381424863643358             0                 0                 0
##      0.0395235614826762             0                 0                 0
##      0.0398504564629362             0                 0                 0
##      0.0449831541922517             0                 0                 0
##      0.150208567676068              0                 0                 0
##      0.291704657263826              0                 0                 0
##      0.31263158525612               0                 0                 0
##      0.313581394222809              0                 0                 0
##      0.399450114450523              0                 0                 0
##      0.419739887455571              0                 0                 0
##      0.425358901761228              0                 0                 0
##      0.594035429893685              0                 0                 0
##      0.671638488556335              0                 0                 0
##      0.688092298985074              0                 0                 0
##      0.806600378227794              0                 0                 0
##      0.867455094638368              0                 0                 0
##      0.897003448844096              0                 0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.174305555555556 0.208333333333333
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.220833333333333 0.25 0.270833333333333
##      0.000000000123720820519974                 0    0                 0
##      0.0000000142143709248919                   0    0                 0
##      0.0000000203570784591136                   0    0                 0
##      0.0000000942663046181582                   0    0                 0
##      0.0381424863643358                         0    0                 0
##      0.0395235614826762                         0    0                 0
##      0.0398504564629362                         0    0                 0
##      0.0449831541922517                         0    0                 0
##      0.150208567676068                          0    0                 0
##      0.291704657263826                          0    0                 0
##      0.31263158525612                           0    0                 0
##      0.313581394222809                          0    0                 0
##      0.399450114450523                          0    0                 0
##      0.419739887455571                          0    0                 0
##      0.425358901761228                          0    0                 0
##      0.594035429893685                          0    0                 0
##      0.671638488556335                          0    0                 0
##      0.688092298985074                          0    0                 0
##      0.806600378227794                          0    0                 0
##      0.867455094638368                          0    0                 0
##      0.897003448844096                          0    0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.289583333333333 0.371527777777778
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.409722222222222 0.416666666666667 0.5 0.55625
##      0.000000000123720820519974                 0                 0   0       0
##      0.0000000142143709248919                   0                 0   0       0
##      0.0000000203570784591136                   0                 0   0       0
##      0.0000000942663046181582                   0                 0   0       0
##      0.0381424863643358                         0                 0   0       0
##      0.0395235614826762                         0                 0   0       0
##      0.0398504564629362                         0                 0   0       0
##      0.0449831541922517                         0                 0   0       0
##      0.150208567676068                          0                 0   0       0
##      0.291704657263826                          0                 0   0       0
##      0.31263158525612                           0                 0   0       0
##      0.313581394222809                          0                 0   0       0
##      0.399450114450523                          0                 0   0       0
##      0.419739887455571                          0                 0   0       0
##      0.425358901761228                          0                 0   0       0
##      0.594035429893685                          0                 0   0       0
##      0.671638488556335                          0                 0   0       0
##      0.688092298985074                          0                 0   0       0
##      0.806600378227794                          0                 0   0       0
##      0.867455094638368                          0                 0   0       0
##      0.897003448844096                          0                 0   0       0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.639583333333333 0.907785087701754 1
##      0.000000000123720820519974                 0                 0 0
##      0.0000000142143709248919                   0                 0 0
##      0.0000000203570784591136                   0                 0 0
##      0.0000000942663046181582                   0                 0 0
##      0.0381424863643358                         0                 0 0
##      0.0395235614826762                         0                 0 0
##      0.0398504564629362                         0                 0 0
##      0.0449831541922517                         0                 0 0
##      0.150208567676068                          0                 0 0
##      0.291704657263826                          0                 0 0
##      0.31263158525612                           0                 0 0
##      0.313581394222809                          0                 0 0
##      0.399450114450523                          0                 0 0
##      0.419739887455571                          0                 0 0
##      0.425358901761228                          0                 0 0
##      0.594035429893685                          0                 0 0
##      0.671638488556335                          0                 0 0
##      0.688092298985074                          0                 0 0
##      0.806600378227794                          0                 0 0
##      0.867455094638368                          0                 0 0
##      0.897003448844096                          0                 0 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 1.34930555555556 4.020833333 6.15
##      0.000000000123720820519974                0           0    0
##      0.0000000142143709248919                  0           0    0
##      0.0000000203570784591136                  0           0    0
##      0.0000000942663046181582                  0           0    0
##      0.0381424863643358                        0           0    0
##      0.0395235614826762                        0           0    0
##      0.0398504564629362                        0           0    0
##      0.0449831541922517                        0           0    0
##      0.150208567676068                         0           0    0
##      0.291704657263826                         0           0    0
##      0.31263158525612                          0           0    0
##      0.313581394222809                         0           0    0
##      0.399450114450523                         0           0    0
##      0.419739887455571                         0           0    0
##      0.425358901761228                         0           0    0
##      0.594035429893685                         0           0    0
##      0.671638488556335                         0           0    0
##      0.688092298985074                         0           0    0
##      0.806600378227794                         0           0    0
##      0.867455094638368                         0           0    0
##      0.897003448844096                         0           0    0
## 
## , , OTT_Time = 14.5, Snapchat_Time = 0, Instagram_Time = 0.156944444444444
## 
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.125 0.142361111111111 0.152777777777778
##      0.000000000123720820519974     0                 0                 0
##      0.0000000142143709248919       0                 0                 0
##      0.0000000203570784591136       0                 0                 0
##      0.0000000942663046181582       0                 0                 0
##      0.0381424863643358             0                 0                 0
##      0.0395235614826762             0                 0                 0
##      0.0398504564629362             0                 0                 0
##      0.0449831541922517             0                 0                 0
##      0.150208567676068              0                 0                 0
##      0.291704657263826              0                 0                 0
##      0.31263158525612               0                 0                 0
##      0.313581394222809              0                 0                 0
##      0.399450114450523              0                 0                 0
##      0.419739887455571              0                 0                 0
##      0.425358901761228              0                 0                 0
##      0.594035429893685              0                 0                 0
##      0.671638488556335              0                 0                 0
##      0.688092298985074              0                 0                 0
##      0.806600378227794              0                 0                 0
##      0.867455094638368              0                 0                 0
##      0.897003448844096              0                 0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.174305555555556 0.208333333333333
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.220833333333333 0.25 0.270833333333333
##      0.000000000123720820519974                 0    0                 0
##      0.0000000142143709248919                   0    0                 0
##      0.0000000203570784591136                   0    0                 0
##      0.0000000942663046181582                   0    0                 0
##      0.0381424863643358                         0    0                 0
##      0.0395235614826762                         0    0                 0
##      0.0398504564629362                         0    0                 0
##      0.0449831541922517                         0    0                 0
##      0.150208567676068                          0    0                 0
##      0.291704657263826                          0    0                 0
##      0.31263158525612                           0    0                 0
##      0.313581394222809                          0    0                 0
##      0.399450114450523                          0    0                 0
##      0.419739887455571                          0    0                 0
##      0.425358901761228                          0    0                 0
##      0.594035429893685                          0    0                 0
##      0.671638488556335                          0    0                 0
##      0.688092298985074                          0    0                 0
##      0.806600378227794                          0    0                 0
##      0.867455094638368                          0    0                 0
##      0.897003448844096                          0    0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.289583333333333 0.371527777777778
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.409722222222222 0.416666666666667 0.5 0.55625
##      0.000000000123720820519974                 0                 0   0       0
##      0.0000000142143709248919                   0                 0   0       0
##      0.0000000203570784591136                   0                 0   0       0
##      0.0000000942663046181582                   0                 0   0       0
##      0.0381424863643358                         0                 0   0       0
##      0.0395235614826762                         0                 0   0       0
##      0.0398504564629362                         0                 0   0       0
##      0.0449831541922517                         0                 0   0       0
##      0.150208567676068                          0                 0   0       0
##      0.291704657263826                          0                 0   0       0
##      0.31263158525612                           0                 0   0       0
##      0.313581394222809                          0                 0   0       0
##      0.399450114450523                          0                 0   0       0
##      0.419739887455571                          0                 0   0       0
##      0.425358901761228                          0                 0   0       0
##      0.594035429893685                          0                 0   0       0
##      0.671638488556335                          0                 0   0       0
##      0.688092298985074                          0                 0   0       0
##      0.806600378227794                          0                 0   0       0
##      0.867455094638368                          0                 0   0       0
##      0.897003448844096                          0                 0   0       0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.639583333333333 0.907785087701754 1
##      0.000000000123720820519974                 0                 0 0
##      0.0000000142143709248919                   0                 0 0
##      0.0000000203570784591136                   0                 0 0
##      0.0000000942663046181582                   0                 0 0
##      0.0381424863643358                         0                 0 0
##      0.0395235614826762                         0                 0 0
##      0.0398504564629362                         0                 0 0
##      0.0449831541922517                         0                 0 0
##      0.150208567676068                          0                 0 0
##      0.291704657263826                          0                 0 0
##      0.31263158525612                           0                 0 0
##      0.313581394222809                          0                 0 0
##      0.399450114450523                          0                 0 0
##      0.419739887455571                          0                 0 0
##      0.425358901761228                          0                 0 0
##      0.594035429893685                          0                 0 0
##      0.671638488556335                          0                 0 0
##      0.688092298985074                          0                 0 0
##      0.806600378227794                          0                 0 0
##      0.867455094638368                          0                 0 0
##      0.897003448844096                          0                 0 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 1.34930555555556 4.020833333 6.15
##      0.000000000123720820519974                0           0    0
##      0.0000000142143709248919                  0           0    0
##      0.0000000203570784591136                  0           0    0
##      0.0000000942663046181582                  0           0    0
##      0.0381424863643358                        0           0    0
##      0.0395235614826762                        0           0    0
##      0.0398504564629362                        0           0    0
##      0.0449831541922517                        0           0    0
##      0.150208567676068                         0           0    0
##      0.291704657263826                         0           0    0
##      0.31263158525612                          0           0    0
##      0.313581394222809                         0           0    0
##      0.399450114450523                         0           0    0
##      0.419739887455571                         0           0    0
##      0.425358901761228                         0           0    0
##      0.594035429893685                         0           0    0
##      0.671638488556335                         0           0    0
##      0.688092298985074                         0           0    0
##      0.806600378227794                         0           0    0
##      0.867455094638368                         0           0    0
##      0.897003448844096                         0           0    0
## 
## , , OTT_Time = 0, Snapchat_Time = 0.125, Instagram_Time = 0.156944444444444
## 
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.125 0.142361111111111 0.152777777777778
##      0.000000000123720820519974     0                 0                 0
##      0.0000000142143709248919       0                 0                 0
##      0.0000000203570784591136       0                 0                 0
##      0.0000000942663046181582       0                 0                 0
##      0.0381424863643358             0                 0                 0
##      0.0395235614826762             0                 0                 0
##      0.0398504564629362             0                 0                 0
##      0.0449831541922517             0                 0                 0
##      0.150208567676068              0                 0                 0
##      0.291704657263826              0                 0                 0
##      0.31263158525612               0                 0                 0
##      0.313581394222809              0                 0                 0
##      0.399450114450523              0                 0                 0
##      0.419739887455571              0                 0                 0
##      0.425358901761228              0                 0                 0
##      0.594035429893685              0                 0                 0
##      0.671638488556335              0                 0                 0
##      0.688092298985074              0                 0                 0
##      0.806600378227794              0                 0                 0
##      0.867455094638368              0                 0                 0
##      0.897003448844096              0                 0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.174305555555556 0.208333333333333
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.220833333333333 0.25 0.270833333333333
##      0.000000000123720820519974                 0    0                 0
##      0.0000000142143709248919                   0    0                 0
##      0.0000000203570784591136                   0    0                 0
##      0.0000000942663046181582                   0    0                 0
##      0.0381424863643358                         0    0                 0
##      0.0395235614826762                         0    0                 0
##      0.0398504564629362                         0    0                 0
##      0.0449831541922517                         0    0                 0
##      0.150208567676068                          0    0                 0
##      0.291704657263826                          0    0                 0
##      0.31263158525612                           0    0                 0
##      0.313581394222809                          0    0                 0
##      0.399450114450523                          0    0                 0
##      0.419739887455571                          0    0                 0
##      0.425358901761228                          0    0                 0
##      0.594035429893685                          0    0                 0
##      0.671638488556335                          0    0                 0
##      0.688092298985074                          0    0                 0
##      0.806600378227794                          0    0                 0
##      0.867455094638368                          0    0                 0
##      0.897003448844096                          0    0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.289583333333333 0.371527777777778
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.409722222222222 0.416666666666667 0.5 0.55625
##      0.000000000123720820519974                 0                 0   0       0
##      0.0000000142143709248919                   0                 0   0       0
##      0.0000000203570784591136                   0                 0   0       0
##      0.0000000942663046181582                   0                 0   0       0
##      0.0381424863643358                         0                 0   0       0
##      0.0395235614826762                         0                 0   0       0
##      0.0398504564629362                         0                 0   0       0
##      0.0449831541922517                         0                 0   0       0
##      0.150208567676068                          0                 0   0       0
##      0.291704657263826                          0                 0   0       0
##      0.31263158525612                           0                 0   0       0
##      0.313581394222809                          0                 0   0       0
##      0.399450114450523                          0                 0   0       0
##      0.419739887455571                          0                 0   0       0
##      0.425358901761228                          0                 0   0       0
##      0.594035429893685                          0                 0   0       0
##      0.671638488556335                          0                 0   0       0
##      0.688092298985074                          0                 0   0       0
##      0.806600378227794                          0                 0   0       0
##      0.867455094638368                          0                 0   0       0
##      0.897003448844096                          0                 0   0       0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.639583333333333 0.907785087701754 1
##      0.000000000123720820519974                 0                 0 0
##      0.0000000142143709248919                   0                 0 0
##      0.0000000203570784591136                   0                 0 0
##      0.0000000942663046181582                   0                 0 0
##      0.0381424863643358                         0                 0 0
##      0.0395235614826762                         0                 0 0
##      0.0398504564629362                         0                 0 0
##      0.0449831541922517                         0                 0 0
##      0.150208567676068                          0                 0 0
##      0.291704657263826                          0                 0 0
##      0.31263158525612                           0                 0 0
##      0.313581394222809                          0                 0 0
##      0.399450114450523                          0                 0 0
##      0.419739887455571                          0                 0 0
##      0.425358901761228                          0                 0 0
##      0.594035429893685                          0                 0 0
##      0.671638488556335                          0                 0 0
##      0.688092298985074                          0                 0 0
##      0.806600378227794                          0                 0 0
##      0.867455094638368                          0                 0 0
##      0.897003448844096                          0                 0 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 1.34930555555556 4.020833333 6.15
##      0.000000000123720820519974                0           0    0
##      0.0000000142143709248919                  0           0    0
##      0.0000000203570784591136                  0           0    0
##      0.0000000942663046181582                  0           0    0
##      0.0381424863643358                        0           0    0
##      0.0395235614826762                        0           0    0
##      0.0398504564629362                        0           0    0
##      0.0449831541922517                        0           0    0
##      0.150208567676068                         0           0    0
##      0.291704657263826                         0           0    0
##      0.31263158525612                          0           0    0
##      0.313581394222809                         0           0    0
##      0.399450114450523                         0           0    0
##      0.419739887455571                         0           0    0
##      0.425358901761228                         0           0    0
##      0.594035429893685                         0           0    0
##      0.671638488556335                         0           0    0
##      0.688092298985074                         0           0    0
##      0.806600378227794                         0           0    0
##      0.867455094638368                         0           0    0
##      0.897003448844096                         0           0    0
## 
## , , OTT_Time = 0.102777777777778, Snapchat_Time = 0.125, Instagram_Time = 0.156944444444444
## 
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.125 0.142361111111111 0.152777777777778
##      0.000000000123720820519974     0                 0                 0
##      0.0000000142143709248919       0                 0                 0
##      0.0000000203570784591136       0                 0                 0
##      0.0000000942663046181582       0                 0                 0
##      0.0381424863643358             0                 0                 0
##      0.0395235614826762             0                 0                 0
##      0.0398504564629362             0                 0                 0
##      0.0449831541922517             0                 0                 0
##      0.150208567676068              0                 0                 0
##      0.291704657263826              0                 0                 0
##      0.31263158525612               0                 0                 0
##      0.313581394222809              0                 0                 0
##      0.399450114450523              0                 0                 0
##      0.419739887455571              0                 0                 0
##      0.425358901761228              0                 0                 0
##      0.594035429893685              0                 0                 0
##      0.671638488556335              0                 0                 0
##      0.688092298985074              0                 0                 0
##      0.806600378227794              0                 0                 0
##      0.867455094638368              0                 0                 0
##      0.897003448844096              0                 0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.174305555555556 0.208333333333333
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.220833333333333 0.25 0.270833333333333
##      0.000000000123720820519974                 0    0                 0
##      0.0000000142143709248919                   0    0                 0
##      0.0000000203570784591136                   0    0                 0
##      0.0000000942663046181582                   0    0                 0
##      0.0381424863643358                         0    0                 0
##      0.0395235614826762                         0    0                 0
##      0.0398504564629362                         0    0                 0
##      0.0449831541922517                         0    0                 0
##      0.150208567676068                          0    0                 0
##      0.291704657263826                          0    0                 0
##      0.31263158525612                           0    0                 0
##      0.313581394222809                          0    0                 0
##      0.399450114450523                          0    0                 0
##      0.419739887455571                          0    0                 0
##      0.425358901761228                          0    0                 0
##      0.594035429893685                          0    0                 0
##      0.671638488556335                          0    0                 0
##      0.688092298985074                          0    0                 0
##      0.806600378227794                          0    0                 0
##      0.867455094638368                          0    0                 0
##      0.897003448844096                          0    0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.289583333333333 0.371527777777778
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.409722222222222 0.416666666666667 0.5 0.55625
##      0.000000000123720820519974                 0                 0   0       0
##      0.0000000142143709248919                   0                 0   0       0
##      0.0000000203570784591136                   0                 0   0       0
##      0.0000000942663046181582                   0                 0   0       0
##      0.0381424863643358                         0                 0   0       0
##      0.0395235614826762                         0                 0   0       0
##      0.0398504564629362                         0                 0   0       0
##      0.0449831541922517                         0                 0   0       0
##      0.150208567676068                          0                 0   0       0
##      0.291704657263826                          0                 0   0       0
##      0.31263158525612                           0                 0   0       0
##      0.313581394222809                          0                 0   0       0
##      0.399450114450523                          0                 0   0       0
##      0.419739887455571                          0                 0   0       0
##      0.425358901761228                          0                 0   0       0
##      0.594035429893685                          0                 0   0       0
##      0.671638488556335                          0                 0   0       0
##      0.688092298985074                          0                 0   0       0
##      0.806600378227794                          0                 0   0       0
##      0.867455094638368                          0                 0   0       0
##      0.897003448844096                          0                 0   0       0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.639583333333333 0.907785087701754 1
##      0.000000000123720820519974                 0                 0 0
##      0.0000000142143709248919                   0                 0 0
##      0.0000000203570784591136                   0                 0 0
##      0.0000000942663046181582                   0                 0 0
##      0.0381424863643358                         0                 0 0
##      0.0395235614826762                         0                 0 0
##      0.0398504564629362                         0                 0 0
##      0.0449831541922517                         0                 0 0
##      0.150208567676068                          0                 0 0
##      0.291704657263826                          0                 0 0
##      0.31263158525612                           0                 0 0
##      0.313581394222809                          0                 0 0
##      0.399450114450523                          0                 0 0
##      0.419739887455571                          0                 0 0
##      0.425358901761228                          0                 0 0
##      0.594035429893685                          0                 0 0
##      0.671638488556335                          0                 0 0
##      0.688092298985074                          0                 0 0
##      0.806600378227794                          0                 0 0
##      0.867455094638368                          0                 0 0
##      0.897003448844096                          0                 0 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 1.34930555555556 4.020833333 6.15
##      0.000000000123720820519974                0           0    0
##      0.0000000142143709248919                  0           0    0
##      0.0000000203570784591136                  0           0    0
##      0.0000000942663046181582                  0           0    0
##      0.0381424863643358                        0           0    0
##      0.0395235614826762                        0           0    0
##      0.0398504564629362                        0           0    0
##      0.0449831541922517                        0           0    0
##      0.150208567676068                         0           0    0
##      0.291704657263826                         0           0    0
##      0.31263158525612                          0           0    0
##      0.313581394222809                         0           0    0
##      0.399450114450523                         0           0    0
##      0.419739887455571                         0           0    0
##      0.425358901761228                         0           0    0
##      0.594035429893685                         0           0    0
##      0.671638488556335                         0           0    0
##      0.688092298985074                         0           0    0
##      0.806600378227794                         0           0    0
##      0.867455094638368                         0           0    0
##      0.897003448844096                         0           0    0
## 
## , , OTT_Time = 0.125, Snapchat_Time = 0.125, Instagram_Time = 0.156944444444444
## 
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.125 0.142361111111111 0.152777777777778
##      0.000000000123720820519974     0                 0                 0
##      0.0000000142143709248919       0                 0                 0
##      0.0000000203570784591136       0                 0                 0
##      0.0000000942663046181582       0                 0                 0
##      0.0381424863643358             0                 0                 0
##      0.0395235614826762             0                 0                 0
##      0.0398504564629362             0                 0                 0
##      0.0449831541922517             0                 0                 0
##      0.150208567676068              0                 0                 0
##      0.291704657263826              0                 0                 0
##      0.31263158525612               0                 0                 0
##      0.313581394222809              0                 0                 0
##      0.399450114450523              0                 0                 0
##      0.419739887455571              0                 0                 0
##      0.425358901761228              0                 0                 0
##      0.594035429893685              0                 0                 0
##      0.671638488556335              0                 0                 0
##      0.688092298985074              0                 0                 0
##      0.806600378227794              0                 0                 0
##      0.867455094638368              0                 0                 0
##      0.897003448844096              0                 0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.174305555555556 0.208333333333333
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.220833333333333 0.25 0.270833333333333
##      0.000000000123720820519974                 0    0                 0
##      0.0000000142143709248919                   0    0                 0
##      0.0000000203570784591136                   0    0                 0
##      0.0000000942663046181582                   0    0                 0
##      0.0381424863643358                         0    0                 0
##      0.0395235614826762                         0    0                 0
##      0.0398504564629362                         0    0                 0
##      0.0449831541922517                         0    0                 0
##      0.150208567676068                          0    0                 0
##      0.291704657263826                          0    0                 0
##      0.31263158525612                           0    0                 0
##      0.313581394222809                          0    0                 0
##      0.399450114450523                          0    0                 0
##      0.419739887455571                          0    0                 0
##      0.425358901761228                          0    0                 0
##      0.594035429893685                          0    0                 0
##      0.671638488556335                          0    0                 0
##      0.688092298985074                          0    0                 0
##      0.806600378227794                          0    0                 0
##      0.867455094638368                          0    0                 0
##      0.897003448844096                          0    0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.289583333333333 0.371527777777778
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.409722222222222 0.416666666666667 0.5 0.55625
##      0.000000000123720820519974                 0                 0   0       0
##      0.0000000142143709248919                   0                 0   0       0
##      0.0000000203570784591136                   0                 0   0       0
##      0.0000000942663046181582                   0                 0   0       0
##      0.0381424863643358                         0                 0   0       0
##      0.0395235614826762                         0                 0   0       0
##      0.0398504564629362                         0                 0   0       0
##      0.0449831541922517                         0                 0   0       0
##      0.150208567676068                          0                 0   0       0
##      0.291704657263826                          0                 0   0       0
##      0.31263158525612                           0                 0   0       0
##      0.313581394222809                          0                 0   0       0
##      0.399450114450523                          0                 0   0       0
##      0.419739887455571                          0                 0   0       0
##      0.425358901761228                          0                 0   0       0
##      0.594035429893685                          0                 0   0       0
##      0.671638488556335                          0                 0   0       0
##      0.688092298985074                          0                 0   0       0
##      0.806600378227794                          0                 0   0       0
##      0.867455094638368                          0                 0   0       0
##      0.897003448844096                          0                 0   0       0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.639583333333333 0.907785087701754 1
##      0.000000000123720820519974                 0                 0 0
##      0.0000000142143709248919                   0                 0 0
##      0.0000000203570784591136                   0                 0 0
##      0.0000000942663046181582                   0                 0 0
##      0.0381424863643358                         0                 0 0
##      0.0395235614826762                         0                 0 0
##      0.0398504564629362                         0                 0 0
##      0.0449831541922517                         0                 0 0
##      0.150208567676068                          0                 0 0
##      0.291704657263826                          0                 0 0
##      0.31263158525612                           0                 0 0
##      0.313581394222809                          0                 0 0
##      0.399450114450523                          0                 0 0
##      0.419739887455571                          0                 0 0
##      0.425358901761228                          0                 0 0
##      0.594035429893685                          0                 0 0
##      0.671638488556335                          0                 0 0
##      0.688092298985074                          0                 0 0
##      0.806600378227794                          0                 0 0
##      0.867455094638368                          0                 0 0
##      0.897003448844096                          0                 0 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 1.34930555555556 4.020833333 6.15
##      0.000000000123720820519974                0           0    0
##      0.0000000142143709248919                  0           0    0
##      0.0000000203570784591136                  0           0    0
##      0.0000000942663046181582                  0           0    0
##      0.0381424863643358                        0           0    0
##      0.0395235614826762                        0           0    0
##      0.0398504564629362                        0           0    0
##      0.0449831541922517                        0           0    0
##      0.150208567676068                         0           0    0
##      0.291704657263826                         0           0    0
##      0.31263158525612                          0           0    0
##      0.313581394222809                         0           0    0
##      0.399450114450523                         0           0    0
##      0.419739887455571                         0           0    0
##      0.425358901761228                         0           0    0
##      0.594035429893685                         0           0    0
##      0.671638488556335                         0           0    0
##      0.688092298985074                         0           0    0
##      0.806600378227794                         0           0    0
##      0.867455094638368                         0           0    0
##      0.897003448844096                         0           0    0
## 
## , , OTT_Time = 0.416666666666667, Snapchat_Time = 0.125, Instagram_Time = 0.156944444444444
## 
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.125 0.142361111111111 0.152777777777778
##      0.000000000123720820519974     0                 0                 0
##      0.0000000142143709248919       0                 0                 0
##      0.0000000203570784591136       0                 0                 0
##      0.0000000942663046181582       0                 0                 0
##      0.0381424863643358             0                 0                 0
##      0.0395235614826762             0                 0                 0
##      0.0398504564629362             0                 0                 0
##      0.0449831541922517             0                 0                 0
##      0.150208567676068              0                 0                 0
##      0.291704657263826              0                 0                 0
##      0.31263158525612               0                 0                 0
##      0.313581394222809              0                 0                 0
##      0.399450114450523              0                 0                 0
##      0.419739887455571              0                 0                 0
##      0.425358901761228              0                 0                 0
##      0.594035429893685              0                 0                 0
##      0.671638488556335              0                 0                 0
##      0.688092298985074              0                 0                 0
##      0.806600378227794              0                 0                 0
##      0.867455094638368              0                 0                 0
##      0.897003448844096              0                 0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.174305555555556 0.208333333333333
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.220833333333333 0.25 0.270833333333333
##      0.000000000123720820519974                 0    0                 0
##      0.0000000142143709248919                   0    0                 0
##      0.0000000203570784591136                   0    0                 0
##      0.0000000942663046181582                   0    0                 0
##      0.0381424863643358                         0    0                 0
##      0.0395235614826762                         0    0                 0
##      0.0398504564629362                         0    0                 0
##      0.0449831541922517                         0    0                 0
##      0.150208567676068                          0    0                 0
##      0.291704657263826                          0    0                 0
##      0.31263158525612                           0    0                 0
##      0.313581394222809                          0    0                 0
##      0.399450114450523                          0    0                 0
##      0.419739887455571                          0    0                 0
##      0.425358901761228                          0    0                 0
##      0.594035429893685                          0    0                 0
##      0.671638488556335                          0    0                 0
##      0.688092298985074                          0    0                 0
##      0.806600378227794                          0    0                 0
##      0.867455094638368                          0    0                 0
##      0.897003448844096                          0    0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.289583333333333 0.371527777777778
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.409722222222222 0.416666666666667 0.5 0.55625
##      0.000000000123720820519974                 0                 0   0       0
##      0.0000000142143709248919                   0                 0   0       0
##      0.0000000203570784591136                   0                 0   0       0
##      0.0000000942663046181582                   0                 0   0       0
##      0.0381424863643358                         0                 0   0       0
##      0.0395235614826762                         0                 0   0       0
##      0.0398504564629362                         0                 0   0       0
##      0.0449831541922517                         0                 0   0       0
##      0.150208567676068                          0                 0   0       0
##      0.291704657263826                          0                 0   0       0
##      0.31263158525612                           0                 0   0       0
##      0.313581394222809                          0                 0   0       0
##      0.399450114450523                          0                 0   0       0
##      0.419739887455571                          0                 0   0       0
##      0.425358901761228                          0                 0   0       0
##      0.594035429893685                          0                 0   0       0
##      0.671638488556335                          0                 0   0       0
##      0.688092298985074                          0                 0   0       0
##      0.806600378227794                          0                 0   0       0
##      0.867455094638368                          0                 0   0       0
##      0.897003448844096                          0                 0   0       0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.639583333333333 0.907785087701754 1
##      0.000000000123720820519974                 0                 0 0
##      0.0000000142143709248919                   0                 0 0
##      0.0000000203570784591136                   0                 0 0
##      0.0000000942663046181582                   0                 0 0
##      0.0381424863643358                         0                 0 0
##      0.0395235614826762                         0                 0 0
##      0.0398504564629362                         0                 0 0
##      0.0449831541922517                         0                 0 0
##      0.150208567676068                          0                 0 0
##      0.291704657263826                          0                 0 0
##      0.31263158525612                           0                 0 0
##      0.313581394222809                          0                 0 0
##      0.399450114450523                          0                 0 0
##      0.419739887455571                          0                 0 0
##      0.425358901761228                          0                 0 0
##      0.594035429893685                          0                 0 0
##      0.671638488556335                          0                 0 0
##      0.688092298985074                          0                 0 0
##      0.806600378227794                          0                 0 0
##      0.867455094638368                          0                 0 0
##      0.897003448844096                          0                 0 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 1.34930555555556 4.020833333 6.15
##      0.000000000123720820519974                0           0    0
##      0.0000000142143709248919                  0           0    0
##      0.0000000203570784591136                  0           0    0
##      0.0000000942663046181582                  0           0    0
##      0.0381424863643358                        0           0    0
##      0.0395235614826762                        0           0    0
##      0.0398504564629362                        0           0    0
##      0.0449831541922517                        0           0    0
##      0.150208567676068                         0           0    0
##      0.291704657263826                         0           0    0
##      0.31263158525612                          0           0    0
##      0.313581394222809                         0           0    0
##      0.399450114450523                         0           0    0
##      0.419739887455571                         0           0    0
##      0.425358901761228                         0           0    0
##      0.594035429893685                         0           0    0
##      0.671638488556335                         0           0    0
##      0.688092298985074                         0           0    0
##      0.806600378227794                         0           0    0
##      0.867455094638368                         0           0    0
##      0.897003448844096                         0           0    0
## 
## , , OTT_Time = 0.5104166667, Snapchat_Time = 0.125, Instagram_Time = 0.156944444444444
## 
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.125 0.142361111111111 0.152777777777778
##      0.000000000123720820519974     0                 0                 0
##      0.0000000142143709248919       0                 0                 0
##      0.0000000203570784591136       0                 0                 0
##      0.0000000942663046181582       0                 0                 0
##      0.0381424863643358             0                 0                 0
##      0.0395235614826762             0                 0                 0
##      0.0398504564629362             0                 0                 0
##      0.0449831541922517             0                 0                 0
##      0.150208567676068              0                 0                 0
##      0.291704657263826              0                 0                 0
##      0.31263158525612               0                 0                 0
##      0.313581394222809              0                 0                 0
##      0.399450114450523              0                 0                 0
##      0.419739887455571              0                 0                 0
##      0.425358901761228              0                 0                 0
##      0.594035429893685              0                 0                 0
##      0.671638488556335              0                 0                 0
##      0.688092298985074              0                 0                 0
##      0.806600378227794              0                 0                 0
##      0.867455094638368              0                 0                 0
##      0.897003448844096              0                 0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.174305555555556 0.208333333333333
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.220833333333333 0.25 0.270833333333333
##      0.000000000123720820519974                 0    0                 0
##      0.0000000142143709248919                   0    0                 0
##      0.0000000203570784591136                   0    0                 0
##      0.0000000942663046181582                   0    0                 0
##      0.0381424863643358                         0    0                 0
##      0.0395235614826762                         0    0                 0
##      0.0398504564629362                         0    0                 0
##      0.0449831541922517                         0    0                 0
##      0.150208567676068                          0    0                 0
##      0.291704657263826                          0    0                 0
##      0.31263158525612                           0    0                 0
##      0.313581394222809                          0    0                 0
##      0.399450114450523                          0    0                 0
##      0.419739887455571                          0    0                 0
##      0.425358901761228                          0    0                 0
##      0.594035429893685                          0    0                 0
##      0.671638488556335                          0    0                 0
##      0.688092298985074                          0    0                 0
##      0.806600378227794                          0    0                 0
##      0.867455094638368                          0    0                 0
##      0.897003448844096                          0    0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.289583333333333 0.371527777777778
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.409722222222222 0.416666666666667 0.5 0.55625
##      0.000000000123720820519974                 0                 0   0       0
##      0.0000000142143709248919                   0                 0   0       0
##      0.0000000203570784591136                   0                 0   0       0
##      0.0000000942663046181582                   0                 0   0       0
##      0.0381424863643358                         0                 0   0       0
##      0.0395235614826762                         0                 0   0       0
##      0.0398504564629362                         0                 0   0       0
##      0.0449831541922517                         0                 0   0       0
##      0.150208567676068                          0                 0   0       0
##      0.291704657263826                          0                 0   0       0
##      0.31263158525612                           0                 0   0       0
##      0.313581394222809                          0                 0   0       0
##      0.399450114450523                          0                 0   0       0
##      0.419739887455571                          0                 0   0       0
##      0.425358901761228                          0                 0   0       0
##      0.594035429893685                          0                 0   0       0
##      0.671638488556335                          0                 0   0       0
##      0.688092298985074                          0                 0   0       0
##      0.806600378227794                          0                 0   0       0
##      0.867455094638368                          0                 0   0       0
##      0.897003448844096                          0                 0   0       0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.639583333333333 0.907785087701754 1
##      0.000000000123720820519974                 0                 0 0
##      0.0000000142143709248919                   0                 0 0
##      0.0000000203570784591136                   0                 0 0
##      0.0000000942663046181582                   0                 0 0
##      0.0381424863643358                         0                 0 0
##      0.0395235614826762                         0                 0 0
##      0.0398504564629362                         0                 0 0
##      0.0449831541922517                         0                 0 0
##      0.150208567676068                          0                 0 0
##      0.291704657263826                          0                 0 0
##      0.31263158525612                           0                 0 0
##      0.313581394222809                          0                 0 0
##      0.399450114450523                          0                 0 0
##      0.419739887455571                          0                 0 0
##      0.425358901761228                          0                 0 0
##      0.594035429893685                          0                 0 0
##      0.671638488556335                          0                 0 0
##      0.688092298985074                          0                 0 0
##      0.806600378227794                          0                 0 0
##      0.867455094638368                          0                 0 0
##      0.897003448844096                          0                 0 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 1.34930555555556 4.020833333 6.15
##      0.000000000123720820519974                0           0    0
##      0.0000000142143709248919                  0           0    0
##      0.0000000203570784591136                  0           0    0
##      0.0000000942663046181582                  0           0    0
##      0.0381424863643358                        0           0    0
##      0.0395235614826762                        0           0    0
##      0.0398504564629362                        0           0    0
##      0.0449831541922517                        0           0    0
##      0.150208567676068                         0           0    0
##      0.291704657263826                         0           0    0
##      0.31263158525612                          0           0    0
##      0.313581394222809                         0           0    0
##      0.399450114450523                         0           0    0
##      0.419739887455571                         0           0    0
##      0.425358901761228                         0           0    0
##      0.594035429893685                         0           0    0
##      0.671638488556335                         0           0    0
##      0.688092298985074                         0           0    0
##      0.806600378227794                         0           0    0
##      0.867455094638368                         0           0    0
##      0.897003448844096                         0           0    0
## 
## , , OTT_Time = 1.44460470085726, Snapchat_Time = 0.125, Instagram_Time = 0.156944444444444
## 
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.125 0.142361111111111 0.152777777777778
##      0.000000000123720820519974     0                 0                 0
##      0.0000000142143709248919       0                 0                 0
##      0.0000000203570784591136       0                 0                 0
##      0.0000000942663046181582       0                 0                 0
##      0.0381424863643358             0                 0                 0
##      0.0395235614826762             0                 0                 0
##      0.0398504564629362             0                 0                 0
##      0.0449831541922517             0                 0                 0
##      0.150208567676068              0                 0                 0
##      0.291704657263826              0                 0                 0
##      0.31263158525612               0                 0                 0
##      0.313581394222809              0                 0                 0
##      0.399450114450523              0                 0                 0
##      0.419739887455571              0                 0                 0
##      0.425358901761228              0                 0                 0
##      0.594035429893685              0                 0                 0
##      0.671638488556335              0                 0                 0
##      0.688092298985074              0                 0                 0
##      0.806600378227794              0                 0                 0
##      0.867455094638368              0                 0                 0
##      0.897003448844096              0                 0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.174305555555556 0.208333333333333
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.220833333333333 0.25 0.270833333333333
##      0.000000000123720820519974                 0    0                 0
##      0.0000000142143709248919                   0    0                 0
##      0.0000000203570784591136                   0    0                 0
##      0.0000000942663046181582                   0    0                 0
##      0.0381424863643358                         0    0                 0
##      0.0395235614826762                         0    0                 0
##      0.0398504564629362                         0    0                 0
##      0.0449831541922517                         0    0                 0
##      0.150208567676068                          0    0                 0
##      0.291704657263826                          0    0                 0
##      0.31263158525612                           0    0                 0
##      0.313581394222809                          0    0                 0
##      0.399450114450523                          0    0                 0
##      0.419739887455571                          0    0                 0
##      0.425358901761228                          0    0                 0
##      0.594035429893685                          0    0                 0
##      0.671638488556335                          0    0                 0
##      0.688092298985074                          0    0                 0
##      0.806600378227794                          0    0                 0
##      0.867455094638368                          0    0                 0
##      0.897003448844096                          0    0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.289583333333333 0.371527777777778
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.409722222222222 0.416666666666667 0.5 0.55625
##      0.000000000123720820519974                 0                 0   0       0
##      0.0000000142143709248919                   0                 0   0       0
##      0.0000000203570784591136                   0                 0   0       0
##      0.0000000942663046181582                   0                 0   0       0
##      0.0381424863643358                         0                 0   0       0
##      0.0395235614826762                         0                 0   0       0
##      0.0398504564629362                         0                 0   0       0
##      0.0449831541922517                         0                 0   0       0
##      0.150208567676068                          0                 0   0       0
##      0.291704657263826                          0                 0   0       0
##      0.31263158525612                           0                 0   0       0
##      0.313581394222809                          0                 0   0       0
##      0.399450114450523                          0                 0   0       0
##      0.419739887455571                          0                 0   0       0
##      0.425358901761228                          0                 0   0       0
##      0.594035429893685                          0                 0   0       0
##      0.671638488556335                          0                 0   0       0
##      0.688092298985074                          0                 0   0       0
##      0.806600378227794                          0                 0   0       0
##      0.867455094638368                          0                 0   0       0
##      0.897003448844096                          0                 0   0       0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.639583333333333 0.907785087701754 1
##      0.000000000123720820519974                 0                 0 0
##      0.0000000142143709248919                   0                 0 0
##      0.0000000203570784591136                   0                 0 0
##      0.0000000942663046181582                   0                 0 0
##      0.0381424863643358                         0                 0 0
##      0.0395235614826762                         0                 0 0
##      0.0398504564629362                         0                 0 0
##      0.0449831541922517                         0                 0 0
##      0.150208567676068                          0                 0 0
##      0.291704657263826                          0                 0 0
##      0.31263158525612                           0                 0 0
##      0.313581394222809                          0                 0 0
##      0.399450114450523                          0                 0 0
##      0.419739887455571                          0                 0 0
##      0.425358901761228                          0                 0 0
##      0.594035429893685                          0                 0 0
##      0.671638488556335                          0                 0 0
##      0.688092298985074                          0                 0 0
##      0.806600378227794                          0                 0 0
##      0.867455094638368                          0                 0 0
##      0.897003448844096                          0                 0 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 1.34930555555556 4.020833333 6.15
##      0.000000000123720820519974                0           0    0
##      0.0000000142143709248919                  0           0    0
##      0.0000000203570784591136                  0           0    0
##      0.0000000942663046181582                  0           0    0
##      0.0381424863643358                        0           0    0
##      0.0395235614826762                        0           0    0
##      0.0398504564629362                        0           0    0
##      0.0449831541922517                        0           0    0
##      0.150208567676068                         0           0    0
##      0.291704657263826                         0           0    0
##      0.31263158525612                          0           0    0
##      0.313581394222809                         0           0    0
##      0.399450114450523                         0           0    0
##      0.419739887455571                         0           0    0
##      0.425358901761228                         0           0    0
##      0.594035429893685                         0           0    0
##      0.671638488556335                         0           0    0
##      0.688092298985074                         0           0    0
##      0.806600378227794                         0           0    0
##      0.867455094638368                         0           0    0
##      0.897003448844096                         0           0    0
## 
## , , OTT_Time = 3, Snapchat_Time = 0.125, Instagram_Time = 0.156944444444444
## 
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.125 0.142361111111111 0.152777777777778
##      0.000000000123720820519974     0                 0                 0
##      0.0000000142143709248919       0                 0                 0
##      0.0000000203570784591136       0                 0                 0
##      0.0000000942663046181582       0                 0                 0
##      0.0381424863643358             0                 0                 0
##      0.0395235614826762             0                 0                 0
##      0.0398504564629362             0                 0                 0
##      0.0449831541922517             0                 0                 0
##      0.150208567676068              0                 0                 0
##      0.291704657263826              0                 0                 0
##      0.31263158525612               0                 0                 0
##      0.313581394222809              0                 0                 0
##      0.399450114450523              0                 0                 0
##      0.419739887455571              0                 0                 0
##      0.425358901761228              0                 0                 0
##      0.594035429893685              0                 0                 0
##      0.671638488556335              0                 0                 0
##      0.688092298985074              0                 0                 0
##      0.806600378227794              0                 0                 0
##      0.867455094638368              0                 0                 0
##      0.897003448844096              0                 0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.174305555555556 0.208333333333333
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.220833333333333 0.25 0.270833333333333
##      0.000000000123720820519974                 0    0                 0
##      0.0000000142143709248919                   0    0                 0
##      0.0000000203570784591136                   0    0                 0
##      0.0000000942663046181582                   0    0                 0
##      0.0381424863643358                         0    0                 0
##      0.0395235614826762                         0    0                 0
##      0.0398504564629362                         0    0                 0
##      0.0449831541922517                         0    0                 0
##      0.150208567676068                          0    0                 0
##      0.291704657263826                          0    0                 0
##      0.31263158525612                           0    0                 0
##      0.313581394222809                          0    0                 0
##      0.399450114450523                          0    0                 0
##      0.419739887455571                          0    0                 0
##      0.425358901761228                          0    0                 0
##      0.594035429893685                          0    0                 0
##      0.671638488556335                          0    0                 0
##      0.688092298985074                          0    0                 0
##      0.806600378227794                          0    0                 0
##      0.867455094638368                          0    0                 0
##      0.897003448844096                          0    0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.289583333333333 0.371527777777778
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.409722222222222 0.416666666666667 0.5 0.55625
##      0.000000000123720820519974                 0                 0   0       0
##      0.0000000142143709248919                   0                 0   0       0
##      0.0000000203570784591136                   0                 0   0       0
##      0.0000000942663046181582                   0                 0   0       0
##      0.0381424863643358                         0                 0   0       0
##      0.0395235614826762                         0                 0   0       0
##      0.0398504564629362                         0                 0   0       0
##      0.0449831541922517                         0                 0   0       0
##      0.150208567676068                          0                 0   0       0
##      0.291704657263826                          0                 0   0       0
##      0.31263158525612                           0                 0   0       0
##      0.313581394222809                          0                 0   0       0
##      0.399450114450523                          0                 0   0       0
##      0.419739887455571                          0                 0   0       0
##      0.425358901761228                          0                 0   0       0
##      0.594035429893685                          0                 0   0       0
##      0.671638488556335                          0                 0   0       0
##      0.688092298985074                          0                 0   0       0
##      0.806600378227794                          0                 0   0       0
##      0.867455094638368                          0                 0   0       0
##      0.897003448844096                          0                 0   0       0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.639583333333333 0.907785087701754 1
##      0.000000000123720820519974                 0                 0 0
##      0.0000000142143709248919                   0                 0 0
##      0.0000000203570784591136                   0                 0 0
##      0.0000000942663046181582                   0                 0 0
##      0.0381424863643358                         0                 0 0
##      0.0395235614826762                         0                 0 0
##      0.0398504564629362                         0                 0 0
##      0.0449831541922517                         0                 0 0
##      0.150208567676068                          0                 0 0
##      0.291704657263826                          0                 0 0
##      0.31263158525612                           0                 0 0
##      0.313581394222809                          0                 0 0
##      0.399450114450523                          0                 0 0
##      0.419739887455571                          0                 0 0
##      0.425358901761228                          0                 0 0
##      0.594035429893685                          0                 0 0
##      0.671638488556335                          0                 0 0
##      0.688092298985074                          0                 0 0
##      0.806600378227794                          0                 0 0
##      0.867455094638368                          0                 0 0
##      0.897003448844096                          0                 0 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 1.34930555555556 4.020833333 6.15
##      0.000000000123720820519974                0           0    0
##      0.0000000142143709248919                  0           0    0
##      0.0000000203570784591136                  0           0    0
##      0.0000000942663046181582                  0           0    0
##      0.0381424863643358                        0           0    0
##      0.0395235614826762                        0           0    0
##      0.0398504564629362                        0           0    0
##      0.0449831541922517                        0           0    0
##      0.150208567676068                         0           0    0
##      0.291704657263826                         0           0    0
##      0.31263158525612                          0           0    0
##      0.313581394222809                         0           0    0
##      0.399450114450523                         0           0    0
##      0.419739887455571                         0           0    0
##      0.425358901761228                         0           0    0
##      0.594035429893685                         0           0    0
##      0.671638488556335                         0           0    0
##      0.688092298985074                         0           0    0
##      0.806600378227794                         0           0    0
##      0.867455094638368                         0           0    0
##      0.897003448844096                         0           0    0
## 
## , , OTT_Time = 14.5, Snapchat_Time = 0.125, Instagram_Time = 0.156944444444444
## 
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.125 0.142361111111111 0.152777777777778
##      0.000000000123720820519974     0                 0                 0
##      0.0000000142143709248919       0                 0                 0
##      0.0000000203570784591136       0                 0                 0
##      0.0000000942663046181582       0                 0                 0
##      0.0381424863643358             0                 0                 0
##      0.0395235614826762             0                 0                 0
##      0.0398504564629362             0                 0                 0
##      0.0449831541922517             0                 0                 0
##      0.150208567676068              0                 0                 0
##      0.291704657263826              0                 0                 0
##      0.31263158525612               0                 0                 0
##      0.313581394222809              0                 0                 0
##      0.399450114450523              0                 0                 0
##      0.419739887455571              0                 0                 0
##      0.425358901761228              0                 0                 0
##      0.594035429893685              0                 0                 0
##      0.671638488556335              0                 0                 0
##      0.688092298985074              0                 0                 0
##      0.806600378227794              0                 0                 0
##      0.867455094638368              0                 0                 0
##      0.897003448844096              0                 0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.174305555555556 0.208333333333333
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.220833333333333 0.25 0.270833333333333
##      0.000000000123720820519974                 0    0                 0
##      0.0000000142143709248919                   0    0                 0
##      0.0000000203570784591136                   0    0                 0
##      0.0000000942663046181582                   0    0                 0
##      0.0381424863643358                         0    0                 0
##      0.0395235614826762                         0    0                 0
##      0.0398504564629362                         0    0                 0
##      0.0449831541922517                         0    0                 0
##      0.150208567676068                          0    0                 0
##      0.291704657263826                          0    0                 0
##      0.31263158525612                           0    0                 0
##      0.313581394222809                          0    0                 0
##      0.399450114450523                          0    0                 0
##      0.419739887455571                          0    0                 0
##      0.425358901761228                          0    0                 0
##      0.594035429893685                          0    0                 0
##      0.671638488556335                          0    0                 0
##      0.688092298985074                          0    0                 0
##      0.806600378227794                          0    0                 0
##      0.867455094638368                          0    0                 0
##      0.897003448844096                          0    0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.289583333333333 0.371527777777778
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.409722222222222 0.416666666666667 0.5 0.55625
##      0.000000000123720820519974                 0                 0   0       0
##      0.0000000142143709248919                   0                 0   0       0
##      0.0000000203570784591136                   0                 0   0       0
##      0.0000000942663046181582                   0                 0   0       0
##      0.0381424863643358                         0                 0   0       0
##      0.0395235614826762                         0                 0   0       0
##      0.0398504564629362                         0                 0   0       0
##      0.0449831541922517                         0                 0   0       0
##      0.150208567676068                          0                 0   0       0
##      0.291704657263826                          0                 0   0       0
##      0.31263158525612                           0                 0   0       0
##      0.313581394222809                          0                 0   0       0
##      0.399450114450523                          0                 0   0       0
##      0.419739887455571                          0                 0   0       0
##      0.425358901761228                          0                 0   0       0
##      0.594035429893685                          0                 0   0       0
##      0.671638488556335                          0                 0   0       0
##      0.688092298985074                          0                 0   0       0
##      0.806600378227794                          0                 0   0       0
##      0.867455094638368                          0                 0   0       0
##      0.897003448844096                          0                 0   0       0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.639583333333333 0.907785087701754 1
##      0.000000000123720820519974                 0                 0 0
##      0.0000000142143709248919                   0                 0 0
##      0.0000000203570784591136                   0                 0 0
##      0.0000000942663046181582                   0                 0 0
##      0.0381424863643358                         0                 0 0
##      0.0395235614826762                         0                 0 0
##      0.0398504564629362                         0                 0 0
##      0.0449831541922517                         0                 0 0
##      0.150208567676068                          0                 0 0
##      0.291704657263826                          0                 0 0
##      0.31263158525612                           0                 0 0
##      0.313581394222809                          0                 0 0
##      0.399450114450523                          0                 0 0
##      0.419739887455571                          0                 0 0
##      0.425358901761228                          0                 0 0
##      0.594035429893685                          0                 0 0
##      0.671638488556335                          0                 0 0
##      0.688092298985074                          0                 0 0
##      0.806600378227794                          0                 0 0
##      0.867455094638368                          0                 0 0
##      0.897003448844096                          0                 0 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 1.34930555555556 4.020833333 6.15
##      0.000000000123720820519974                0           0    0
##      0.0000000142143709248919                  0           0    0
##      0.0000000203570784591136                  0           0    0
##      0.0000000942663046181582                  0           0    0
##      0.0381424863643358                        0           0    0
##      0.0395235614826762                        0           0    0
##      0.0398504564629362                        0           0    0
##      0.0449831541922517                        0           0    0
##      0.150208567676068                         0           0    0
##      0.291704657263826                         0           0    0
##      0.31263158525612                          0           0    0
##      0.313581394222809                         0           0    0
##      0.399450114450523                         0           0    0
##      0.419739887455571                         0           0    0
##      0.425358901761228                         0           0    0
##      0.594035429893685                         0           0    0
##      0.671638488556335                         0           0    0
##      0.688092298985074                         0           0    0
##      0.806600378227794                         0           0    0
##      0.867455094638368                         0           0    0
##      0.897003448844096                         0           0    0
## 
## , , OTT_Time = 0, Snapchat_Time = 0.153472222222222, Instagram_Time = 0.156944444444444
## 
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.125 0.142361111111111 0.152777777777778
##      0.000000000123720820519974     0                 0                 0
##      0.0000000142143709248919       0                 0                 0
##      0.0000000203570784591136       0                 0                 0
##      0.0000000942663046181582       0                 0                 0
##      0.0381424863643358             0                 0                 0
##      0.0395235614826762             0                 0                 0
##      0.0398504564629362             0                 0                 0
##      0.0449831541922517             0                 0                 0
##      0.150208567676068              0                 0                 0
##      0.291704657263826              0                 0                 0
##      0.31263158525612               0                 0                 0
##      0.313581394222809              0                 0                 0
##      0.399450114450523              0                 0                 0
##      0.419739887455571              0                 0                 0
##      0.425358901761228              0                 0                 0
##      0.594035429893685              0                 0                 0
##      0.671638488556335              0                 0                 0
##      0.688092298985074              0                 0                 0
##      0.806600378227794              0                 0                 0
##      0.867455094638368              0                 0                 0
##      0.897003448844096              0                 0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.174305555555556 0.208333333333333
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.220833333333333 0.25 0.270833333333333
##      0.000000000123720820519974                 0    0                 0
##      0.0000000142143709248919                   0    0                 0
##      0.0000000203570784591136                   0    0                 0
##      0.0000000942663046181582                   0    0                 0
##      0.0381424863643358                         0    0                 0
##      0.0395235614826762                         0    0                 0
##      0.0398504564629362                         0    0                 0
##      0.0449831541922517                         0    0                 0
##      0.150208567676068                          0    0                 0
##      0.291704657263826                          0    0                 0
##      0.31263158525612                           0    0                 0
##      0.313581394222809                          0    0                 0
##      0.399450114450523                          0    0                 0
##      0.419739887455571                          0    0                 0
##      0.425358901761228                          0    0                 0
##      0.594035429893685                          0    0                 0
##      0.671638488556335                          0    0                 0
##      0.688092298985074                          0    0                 0
##      0.806600378227794                          0    0                 0
##      0.867455094638368                          0    0                 0
##      0.897003448844096                          0    0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.289583333333333 0.371527777777778
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.409722222222222 0.416666666666667 0.5 0.55625
##      0.000000000123720820519974                 0                 0   0       0
##      0.0000000142143709248919                   0                 0   0       0
##      0.0000000203570784591136                   0                 0   0       0
##      0.0000000942663046181582                   0                 0   0       0
##      0.0381424863643358                         0                 0   0       0
##      0.0395235614826762                         0                 0   0       0
##      0.0398504564629362                         0                 0   0       0
##      0.0449831541922517                         0                 0   0       0
##      0.150208567676068                          0                 0   0       0
##      0.291704657263826                          0                 0   0       0
##      0.31263158525612                           0                 0   0       0
##      0.313581394222809                          0                 0   0       0
##      0.399450114450523                          0                 0   0       0
##      0.419739887455571                          0                 0   0       0
##      0.425358901761228                          0                 0   0       0
##      0.594035429893685                          0                 0   0       0
##      0.671638488556335                          0                 0   0       0
##      0.688092298985074                          0                 0   0       0
##      0.806600378227794                          0                 0   0       0
##      0.867455094638368                          0                 0   0       0
##      0.897003448844096                          0                 0   0       0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.639583333333333 0.907785087701754 1
##      0.000000000123720820519974                 0                 0 0
##      0.0000000142143709248919                   0                 0 0
##      0.0000000203570784591136                   0                 0 0
##      0.0000000942663046181582                   0                 0 0
##      0.0381424863643358                         0                 0 0
##      0.0395235614826762                         0                 0 0
##      0.0398504564629362                         0                 0 0
##      0.0449831541922517                         0                 0 0
##      0.150208567676068                          0                 0 0
##      0.291704657263826                          0                 0 0
##      0.31263158525612                           0                 0 0
##      0.313581394222809                          0                 0 0
##      0.399450114450523                          0                 0 0
##      0.419739887455571                          0                 0 0
##      0.425358901761228                          0                 0 0
##      0.594035429893685                          0                 0 0
##      0.671638488556335                          0                 0 0
##      0.688092298985074                          0                 0 0
##      0.806600378227794                          0                 0 0
##      0.867455094638368                          0                 0 0
##      0.897003448844096                          0                 0 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 1.34930555555556 4.020833333 6.15
##      0.000000000123720820519974                0           0    0
##      0.0000000142143709248919                  0           0    0
##      0.0000000203570784591136                  0           0    0
##      0.0000000942663046181582                  0           0    0
##      0.0381424863643358                        0           0    0
##      0.0395235614826762                        0           0    0
##      0.0398504564629362                        0           0    0
##      0.0449831541922517                        0           0    0
##      0.150208567676068                         0           0    0
##      0.291704657263826                         0           0    0
##      0.31263158525612                          0           0    0
##      0.313581394222809                         0           0    0
##      0.399450114450523                         0           0    0
##      0.419739887455571                         0           0    0
##      0.425358901761228                         0           0    0
##      0.594035429893685                         0           0    0
##      0.671638488556335                         0           0    0
##      0.688092298985074                         0           0    0
##      0.806600378227794                         0           0    0
##      0.867455094638368                         0           0    0
##      0.897003448844096                         0           0    0
## 
## , , OTT_Time = 0.102777777777778, Snapchat_Time = 0.153472222222222, Instagram_Time = 0.156944444444444
## 
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.125 0.142361111111111 0.152777777777778
##      0.000000000123720820519974     0                 0                 0
##      0.0000000142143709248919       0                 0                 0
##      0.0000000203570784591136       0                 0                 0
##      0.0000000942663046181582       0                 0                 0
##      0.0381424863643358             0                 0                 0
##      0.0395235614826762             0                 0                 0
##      0.0398504564629362             0                 0                 0
##      0.0449831541922517             0                 0                 0
##      0.150208567676068              0                 0                 0
##      0.291704657263826              0                 0                 0
##      0.31263158525612               0                 0                 0
##      0.313581394222809              0                 0                 0
##      0.399450114450523              0                 0                 0
##      0.419739887455571              0                 0                 0
##      0.425358901761228              0                 0                 0
##      0.594035429893685              0                 0                 0
##      0.671638488556335              0                 0                 0
##      0.688092298985074              0                 0                 0
##      0.806600378227794              0                 0                 0
##      0.867455094638368              0                 0                 0
##      0.897003448844096              0                 0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.174305555555556 0.208333333333333
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.220833333333333 0.25 0.270833333333333
##      0.000000000123720820519974                 0    0                 0
##      0.0000000142143709248919                   0    0                 0
##      0.0000000203570784591136                   0    0                 0
##      0.0000000942663046181582                   0    0                 0
##      0.0381424863643358                         0    0                 0
##      0.0395235614826762                         0    0                 0
##      0.0398504564629362                         0    0                 0
##      0.0449831541922517                         0    0                 0
##      0.150208567676068                          0    0                 0
##      0.291704657263826                          0    0                 0
##      0.31263158525612                           0    0                 0
##      0.313581394222809                          0    0                 0
##      0.399450114450523                          0    0                 0
##      0.419739887455571                          0    0                 0
##      0.425358901761228                          0    0                 0
##      0.594035429893685                          0    0                 0
##      0.671638488556335                          0    0                 0
##      0.688092298985074                          0    0                 0
##      0.806600378227794                          0    0                 0
##      0.867455094638368                          0    0                 0
##      0.897003448844096                          0    0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.289583333333333 0.371527777777778
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.409722222222222 0.416666666666667 0.5 0.55625
##      0.000000000123720820519974                 0                 0   0       0
##      0.0000000142143709248919                   0                 0   0       0
##      0.0000000203570784591136                   0                 0   0       0
##      0.0000000942663046181582                   0                 0   0       0
##      0.0381424863643358                         0                 0   0       0
##      0.0395235614826762                         0                 0   0       0
##      0.0398504564629362                         0                 0   0       0
##      0.0449831541922517                         0                 0   0       0
##      0.150208567676068                          0                 0   0       0
##      0.291704657263826                          0                 0   0       0
##      0.31263158525612                           0                 0   0       0
##      0.313581394222809                          0                 0   0       0
##      0.399450114450523                          0                 0   0       0
##      0.419739887455571                          0                 0   0       0
##      0.425358901761228                          0                 0   0       0
##      0.594035429893685                          0                 0   0       0
##      0.671638488556335                          0                 0   0       0
##      0.688092298985074                          0                 0   0       0
##      0.806600378227794                          0                 0   0       0
##      0.867455094638368                          0                 0   0       0
##      0.897003448844096                          0                 0   0       0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.639583333333333 0.907785087701754 1
##      0.000000000123720820519974                 0                 0 0
##      0.0000000142143709248919                   0                 0 0
##      0.0000000203570784591136                   0                 0 0
##      0.0000000942663046181582                   0                 0 0
##      0.0381424863643358                         0                 0 0
##      0.0395235614826762                         0                 0 0
##      0.0398504564629362                         0                 0 0
##      0.0449831541922517                         0                 0 0
##      0.150208567676068                          0                 0 0
##      0.291704657263826                          0                 0 0
##      0.31263158525612                           0                 0 0
##      0.313581394222809                          0                 0 0
##      0.399450114450523                          0                 0 0
##      0.419739887455571                          0                 0 0
##      0.425358901761228                          0                 0 0
##      0.594035429893685                          0                 0 0
##      0.671638488556335                          0                 0 0
##      0.688092298985074                          0                 0 0
##      0.806600378227794                          0                 0 0
##      0.867455094638368                          0                 0 0
##      0.897003448844096                          0                 0 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 1.34930555555556 4.020833333 6.15
##      0.000000000123720820519974                0           0    0
##      0.0000000142143709248919                  0           0    0
##      0.0000000203570784591136                  0           0    0
##      0.0000000942663046181582                  0           0    0
##      0.0381424863643358                        0           0    0
##      0.0395235614826762                        0           0    0
##      0.0398504564629362                        0           0    0
##      0.0449831541922517                        0           0    0
##      0.150208567676068                         0           0    0
##      0.291704657263826                         0           0    0
##      0.31263158525612                          0           0    0
##      0.313581394222809                         0           0    0
##      0.399450114450523                         0           0    0
##      0.419739887455571                         0           0    0
##      0.425358901761228                         0           0    0
##      0.594035429893685                         0           0    0
##      0.671638488556335                         0           0    0
##      0.688092298985074                         0           0    0
##      0.806600378227794                         0           0    0
##      0.867455094638368                         0           0    0
##      0.897003448844096                         0           0    0
## 
## , , OTT_Time = 0.125, Snapchat_Time = 0.153472222222222, Instagram_Time = 0.156944444444444
## 
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.125 0.142361111111111 0.152777777777778
##      0.000000000123720820519974     0                 0                 0
##      0.0000000142143709248919       0                 0                 0
##      0.0000000203570784591136       0                 0                 0
##      0.0000000942663046181582       0                 0                 0
##      0.0381424863643358             0                 0                 0
##      0.0395235614826762             0                 0                 0
##      0.0398504564629362             0                 0                 0
##      0.0449831541922517             0                 0                 0
##      0.150208567676068              0                 0                 0
##      0.291704657263826              0                 0                 0
##      0.31263158525612               0                 0                 0
##      0.313581394222809              0                 0                 0
##      0.399450114450523              0                 0                 0
##      0.419739887455571              0                 0                 0
##      0.425358901761228              0                 0                 0
##      0.594035429893685              0                 0                 0
##      0.671638488556335              0                 0                 0
##      0.688092298985074              0                 0                 0
##      0.806600378227794              0                 0                 0
##      0.867455094638368              0                 0                 0
##      0.897003448844096              0                 0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.174305555555556 0.208333333333333
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.220833333333333 0.25 0.270833333333333
##      0.000000000123720820519974                 0    0                 0
##      0.0000000142143709248919                   0    0                 0
##      0.0000000203570784591136                   0    0                 0
##      0.0000000942663046181582                   0    0                 0
##      0.0381424863643358                         0    0                 0
##      0.0395235614826762                         0    0                 0
##      0.0398504564629362                         0    0                 0
##      0.0449831541922517                         0    0                 0
##      0.150208567676068                          0    0                 0
##      0.291704657263826                          0    0                 0
##      0.31263158525612                           0    0                 0
##      0.313581394222809                          0    0                 0
##      0.399450114450523                          0    0                 0
##      0.419739887455571                          0    0                 0
##      0.425358901761228                          0    0                 0
##      0.594035429893685                          0    0                 0
##      0.671638488556335                          0    0                 0
##      0.688092298985074                          0    0                 0
##      0.806600378227794                          0    0                 0
##      0.867455094638368                          0    0                 0
##      0.897003448844096                          0    0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.289583333333333 0.371527777777778
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.409722222222222 0.416666666666667 0.5 0.55625
##      0.000000000123720820519974                 0                 0   0       0
##      0.0000000142143709248919                   0                 0   0       0
##      0.0000000203570784591136                   0                 0   0       0
##      0.0000000942663046181582                   0                 0   0       0
##      0.0381424863643358                         0                 0   0       0
##      0.0395235614826762                         0                 0   0       0
##      0.0398504564629362                         0                 0   0       0
##      0.0449831541922517                         0                 0   0       0
##      0.150208567676068                          0                 0   0       0
##      0.291704657263826                          0                 0   0       0
##      0.31263158525612                           0                 0   0       0
##      0.313581394222809                          0                 0   0       0
##      0.399450114450523                          0                 0   0       0
##      0.419739887455571                          0                 0   0       0
##      0.425358901761228                          0                 0   0       0
##      0.594035429893685                          0                 0   0       0
##      0.671638488556335                          0                 0   0       0
##      0.688092298985074                          0                 0   0       0
##      0.806600378227794                          0                 0   0       0
##      0.867455094638368                          0                 0   0       0
##      0.897003448844096                          0                 0   0       0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.639583333333333 0.907785087701754 1
##      0.000000000123720820519974                 0                 0 0
##      0.0000000142143709248919                   0                 0 0
##      0.0000000203570784591136                   0                 0 0
##      0.0000000942663046181582                   0                 0 0
##      0.0381424863643358                         0                 0 0
##      0.0395235614826762                         0                 0 0
##      0.0398504564629362                         0                 0 0
##      0.0449831541922517                         0                 0 0
##      0.150208567676068                          0                 0 0
##      0.291704657263826                          0                 0 0
##      0.31263158525612                           0                 0 0
##      0.313581394222809                          0                 0 0
##      0.399450114450523                          0                 0 0
##      0.419739887455571                          0                 0 0
##      0.425358901761228                          0                 0 0
##      0.594035429893685                          0                 0 0
##      0.671638488556335                          0                 0 0
##      0.688092298985074                          0                 0 0
##      0.806600378227794                          0                 0 0
##      0.867455094638368                          0                 0 0
##      0.897003448844096                          0                 0 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 1.34930555555556 4.020833333 6.15
##      0.000000000123720820519974                0           0    0
##      0.0000000142143709248919                  0           0    0
##      0.0000000203570784591136                  0           0    0
##      0.0000000942663046181582                  0           0    0
##      0.0381424863643358                        0           0    0
##      0.0395235614826762                        0           0    0
##      0.0398504564629362                        0           0    0
##      0.0449831541922517                        0           0    0
##      0.150208567676068                         0           0    0
##      0.291704657263826                         0           0    0
##      0.31263158525612                          0           0    0
##      0.313581394222809                         0           0    0
##      0.399450114450523                         0           0    0
##      0.419739887455571                         0           0    0
##      0.425358901761228                         0           0    0
##      0.594035429893685                         0           0    0
##      0.671638488556335                         0           0    0
##      0.688092298985074                         0           0    0
##      0.806600378227794                         0           0    0
##      0.867455094638368                         0           0    0
##      0.897003448844096                         0           0    0
## 
## , , OTT_Time = 0.416666666666667, Snapchat_Time = 0.153472222222222, Instagram_Time = 0.156944444444444
## 
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.125 0.142361111111111 0.152777777777778
##      0.000000000123720820519974     0                 0                 0
##      0.0000000142143709248919       0                 0                 0
##      0.0000000203570784591136       0                 0                 0
##      0.0000000942663046181582       0                 0                 0
##      0.0381424863643358             0                 0                 0
##      0.0395235614826762             0                 0                 0
##      0.0398504564629362             0                 0                 0
##      0.0449831541922517             0                 0                 0
##      0.150208567676068              0                 0                 0
##      0.291704657263826              0                 0                 0
##      0.31263158525612               0                 0                 0
##      0.313581394222809              0                 0                 0
##      0.399450114450523              0                 0                 0
##      0.419739887455571              0                 0                 0
##      0.425358901761228              0                 0                 0
##      0.594035429893685              0                 0                 0
##      0.671638488556335              0                 0                 0
##      0.688092298985074              0                 0                 0
##      0.806600378227794              0                 0                 0
##      0.867455094638368              0                 0                 0
##      0.897003448844096              0                 0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.174305555555556 0.208333333333333
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.220833333333333 0.25 0.270833333333333
##      0.000000000123720820519974                 0    0                 0
##      0.0000000142143709248919                   0    0                 0
##      0.0000000203570784591136                   0    0                 0
##      0.0000000942663046181582                   0    0                 0
##      0.0381424863643358                         0    0                 0
##      0.0395235614826762                         0    0                 0
##      0.0398504564629362                         0    0                 0
##      0.0449831541922517                         0    0                 0
##      0.150208567676068                          0    0                 0
##      0.291704657263826                          0    0                 0
##      0.31263158525612                           0    0                 0
##      0.313581394222809                          0    0                 0
##      0.399450114450523                          0    0                 0
##      0.419739887455571                          0    0                 0
##      0.425358901761228                          0    0                 0
##      0.594035429893685                          0    0                 0
##      0.671638488556335                          0    0                 0
##      0.688092298985074                          0    0                 0
##      0.806600378227794                          0    0                 0
##      0.867455094638368                          0    0                 0
##      0.897003448844096                          0    0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.289583333333333 0.371527777777778
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.409722222222222 0.416666666666667 0.5 0.55625
##      0.000000000123720820519974                 0                 0   0       0
##      0.0000000142143709248919                   0                 0   0       0
##      0.0000000203570784591136                   0                 0   0       0
##      0.0000000942663046181582                   0                 0   0       0
##      0.0381424863643358                         0                 0   0       0
##      0.0395235614826762                         0                 0   0       0
##      0.0398504564629362                         0                 0   0       0
##      0.0449831541922517                         0                 0   0       0
##      0.150208567676068                          0                 0   0       0
##      0.291704657263826                          0                 0   0       0
##      0.31263158525612                           0                 0   0       0
##      0.313581394222809                          0                 0   0       0
##      0.399450114450523                          0                 0   0       0
##      0.419739887455571                          0                 0   0       0
##      0.425358901761228                          0                 0   0       0
##      0.594035429893685                          0                 0   0       0
##      0.671638488556335                          0                 0   0       0
##      0.688092298985074                          0                 0   0       0
##      0.806600378227794                          0                 0   0       0
##      0.867455094638368                          0                 0   0       0
##      0.897003448844096                          0                 0   0       0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.639583333333333 0.907785087701754 1
##      0.000000000123720820519974                 0                 0 0
##      0.0000000142143709248919                   0                 0 0
##      0.0000000203570784591136                   0                 0 0
##      0.0000000942663046181582                   0                 0 0
##      0.0381424863643358                         0                 0 0
##      0.0395235614826762                         0                 0 0
##      0.0398504564629362                         0                 0 0
##      0.0449831541922517                         0                 0 0
##      0.150208567676068                          0                 0 0
##      0.291704657263826                          0                 0 0
##      0.31263158525612                           0                 0 0
##      0.313581394222809                          0                 0 0
##      0.399450114450523                          0                 0 0
##      0.419739887455571                          0                 0 0
##      0.425358901761228                          0                 0 0
##      0.594035429893685                          0                 0 0
##      0.671638488556335                          0                 0 0
##      0.688092298985074                          0                 0 0
##      0.806600378227794                          0                 0 0
##      0.867455094638368                          0                 0 0
##      0.897003448844096                          0                 0 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 1.34930555555556 4.020833333 6.15
##      0.000000000123720820519974                0           0    0
##      0.0000000142143709248919                  0           0    0
##      0.0000000203570784591136                  0           0    0
##      0.0000000942663046181582                  0           0    0
##      0.0381424863643358                        0           0    0
##      0.0395235614826762                        0           0    0
##      0.0398504564629362                        0           0    0
##      0.0449831541922517                        0           0    0
##      0.150208567676068                         0           0    0
##      0.291704657263826                         0           0    0
##      0.31263158525612                          0           0    0
##      0.313581394222809                         0           0    0
##      0.399450114450523                         0           0    0
##      0.419739887455571                         0           0    0
##      0.425358901761228                         0           0    0
##      0.594035429893685                         0           0    0
##      0.671638488556335                         0           0    0
##      0.688092298985074                         0           0    0
##      0.806600378227794                         0           0    0
##      0.867455094638368                         0           0    0
##      0.897003448844096                         0           0    0
## 
## , , OTT_Time = 0.5104166667, Snapchat_Time = 0.153472222222222, Instagram_Time = 0.156944444444444
## 
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.125 0.142361111111111 0.152777777777778
##      0.000000000123720820519974     0                 0                 0
##      0.0000000142143709248919       0                 0                 0
##      0.0000000203570784591136       0                 0                 0
##      0.0000000942663046181582       0                 0                 0
##      0.0381424863643358             0                 0                 0
##      0.0395235614826762             0                 0                 0
##      0.0398504564629362             0                 0                 0
##      0.0449831541922517             0                 0                 0
##      0.150208567676068              0                 0                 0
##      0.291704657263826              0                 0                 0
##      0.31263158525612               0                 0                 0
##      0.313581394222809              0                 0                 0
##      0.399450114450523              0                 0                 0
##      0.419739887455571              0                 0                 0
##      0.425358901761228              0                 0                 0
##      0.594035429893685              0                 0                 0
##      0.671638488556335              0                 0                 0
##      0.688092298985074              0                 0                 0
##      0.806600378227794              0                 0                 0
##      0.867455094638368              0                 0                 0
##      0.897003448844096              0                 0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.174305555555556 0.208333333333333
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.220833333333333 0.25 0.270833333333333
##      0.000000000123720820519974                 0    0                 0
##      0.0000000142143709248919                   0    0                 0
##      0.0000000203570784591136                   0    0                 0
##      0.0000000942663046181582                   0    0                 0
##      0.0381424863643358                         0    0                 0
##      0.0395235614826762                         0    0                 0
##      0.0398504564629362                         0    0                 0
##      0.0449831541922517                         0    0                 0
##      0.150208567676068                          0    0                 0
##      0.291704657263826                          0    0                 0
##      0.31263158525612                           0    0                 0
##      0.313581394222809                          0    0                 0
##      0.399450114450523                          0    0                 0
##      0.419739887455571                          0    0                 0
##      0.425358901761228                          0    0                 0
##      0.594035429893685                          0    0                 0
##      0.671638488556335                          0    0                 0
##      0.688092298985074                          0    0                 0
##      0.806600378227794                          0    0                 0
##      0.867455094638368                          0    0                 0
##      0.897003448844096                          0    0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.289583333333333 0.371527777777778
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.409722222222222 0.416666666666667 0.5 0.55625
##      0.000000000123720820519974                 0                 0   0       0
##      0.0000000142143709248919                   0                 0   0       0
##      0.0000000203570784591136                   0                 0   0       0
##      0.0000000942663046181582                   0                 0   0       0
##      0.0381424863643358                         0                 0   0       0
##      0.0395235614826762                         0                 0   0       0
##      0.0398504564629362                         0                 0   0       0
##      0.0449831541922517                         0                 0   0       0
##      0.150208567676068                          0                 0   0       0
##      0.291704657263826                          0                 0   0       0
##      0.31263158525612                           0                 0   0       0
##      0.313581394222809                          0                 0   0       0
##      0.399450114450523                          0                 0   0       0
##      0.419739887455571                          0                 0   0       0
##      0.425358901761228                          0                 0   0       0
##      0.594035429893685                          0                 0   0       0
##      0.671638488556335                          0                 0   0       0
##      0.688092298985074                          0                 0   0       0
##      0.806600378227794                          0                 0   0       0
##      0.867455094638368                          0                 0   0       0
##      0.897003448844096                          0                 0   0       0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.639583333333333 0.907785087701754 1
##      0.000000000123720820519974                 0                 0 0
##      0.0000000142143709248919                   0                 0 0
##      0.0000000203570784591136                   0                 0 0
##      0.0000000942663046181582                   0                 0 0
##      0.0381424863643358                         0                 0 0
##      0.0395235614826762                         0                 0 0
##      0.0398504564629362                         0                 0 0
##      0.0449831541922517                         0                 0 0
##      0.150208567676068                          0                 0 0
##      0.291704657263826                          0                 0 0
##      0.31263158525612                           0                 0 0
##      0.313581394222809                          0                 0 0
##      0.399450114450523                          0                 0 0
##      0.419739887455571                          0                 0 0
##      0.425358901761228                          0                 0 0
##      0.594035429893685                          0                 0 0
##      0.671638488556335                          0                 0 0
##      0.688092298985074                          0                 0 0
##      0.806600378227794                          0                 0 0
##      0.867455094638368                          0                 0 0
##      0.897003448844096                          0                 0 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 1.34930555555556 4.020833333 6.15
##      0.000000000123720820519974                0           0    0
##      0.0000000142143709248919                  0           0    0
##      0.0000000203570784591136                  0           0    0
##      0.0000000942663046181582                  0           0    0
##      0.0381424863643358                        0           0    0
##      0.0395235614826762                        0           0    0
##      0.0398504564629362                        0           0    0
##      0.0449831541922517                        0           0    0
##      0.150208567676068                         0           0    0
##      0.291704657263826                         0           0    0
##      0.31263158525612                          0           0    0
##      0.313581394222809                         0           0    0
##      0.399450114450523                         0           0    0
##      0.419739887455571                         0           0    0
##      0.425358901761228                         0           0    0
##      0.594035429893685                         0           0    0
##      0.671638488556335                         0           0    0
##      0.688092298985074                         0           0    0
##      0.806600378227794                         0           0    0
##      0.867455094638368                         0           0    0
##      0.897003448844096                         0           0    0
## 
## , , OTT_Time = 1.44460470085726, Snapchat_Time = 0.153472222222222, Instagram_Time = 0.156944444444444
## 
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.125 0.142361111111111 0.152777777777778
##      0.000000000123720820519974     0                 0                 0
##      0.0000000142143709248919       0                 0                 0
##      0.0000000203570784591136       0                 0                 0
##      0.0000000942663046181582       0                 0                 0
##      0.0381424863643358             0                 0                 0
##      0.0395235614826762             0                 0                 0
##      0.0398504564629362             0                 0                 0
##      0.0449831541922517             0                 0                 0
##      0.150208567676068              0                 0                 0
##      0.291704657263826              0                 0                 0
##      0.31263158525612               0                 0                 0
##      0.313581394222809              0                 0                 0
##      0.399450114450523              0                 0                 0
##      0.419739887455571              0                 0                 0
##      0.425358901761228              0                 0                 0
##      0.594035429893685              0                 0                 0
##      0.671638488556335              0                 0                 0
##      0.688092298985074              0                 0                 0
##      0.806600378227794              0                 0                 0
##      0.867455094638368              0                 0                 0
##      0.897003448844096              0                 0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.174305555555556 0.208333333333333
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.220833333333333 0.25 0.270833333333333
##      0.000000000123720820519974                 0    0                 0
##      0.0000000142143709248919                   0    0                 0
##      0.0000000203570784591136                   0    0                 0
##      0.0000000942663046181582                   0    0                 0
##      0.0381424863643358                         0    0                 0
##      0.0395235614826762                         0    0                 0
##      0.0398504564629362                         0    0                 0
##      0.0449831541922517                         0    0                 0
##      0.150208567676068                          0    0                 0
##      0.291704657263826                          0    0                 0
##      0.31263158525612                           0    0                 0
##      0.313581394222809                          0    0                 0
##      0.399450114450523                          0    0                 0
##      0.419739887455571                          0    0                 0
##      0.425358901761228                          0    0                 0
##      0.594035429893685                          0    0                 0
##      0.671638488556335                          0    0                 0
##      0.688092298985074                          0    0                 0
##      0.806600378227794                          0    0                 0
##      0.867455094638368                          0    0                 0
##      0.897003448844096                          0    0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.289583333333333 0.371527777777778
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.409722222222222 0.416666666666667 0.5 0.55625
##      0.000000000123720820519974                 0                 0   0       0
##      0.0000000142143709248919                   0                 0   0       0
##      0.0000000203570784591136                   0                 0   0       0
##      0.0000000942663046181582                   0                 0   0       0
##      0.0381424863643358                         0                 0   0       0
##      0.0395235614826762                         0                 0   0       0
##      0.0398504564629362                         0                 0   0       0
##      0.0449831541922517                         0                 0   0       0
##      0.150208567676068                          0                 0   0       0
##      0.291704657263826                          0                 0   0       0
##      0.31263158525612                           0                 0   0       0
##      0.313581394222809                          0                 0   0       0
##      0.399450114450523                          0                 0   0       0
##      0.419739887455571                          0                 0   0       0
##      0.425358901761228                          0                 0   0       0
##      0.594035429893685                          0                 0   0       0
##      0.671638488556335                          0                 0   0       0
##      0.688092298985074                          0                 0   0       0
##      0.806600378227794                          0                 0   0       0
##      0.867455094638368                          0                 0   0       0
##      0.897003448844096                          0                 0   0       0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.639583333333333 0.907785087701754 1
##      0.000000000123720820519974                 0                 0 0
##      0.0000000142143709248919                   0                 0 0
##      0.0000000203570784591136                   0                 0 0
##      0.0000000942663046181582                   0                 0 0
##      0.0381424863643358                         0                 0 0
##      0.0395235614826762                         0                 0 0
##      0.0398504564629362                         0                 0 0
##      0.0449831541922517                         0                 0 0
##      0.150208567676068                          0                 0 0
##      0.291704657263826                          0                 0 0
##      0.31263158525612                           0                 0 0
##      0.313581394222809                          0                 0 0
##      0.399450114450523                          0                 0 0
##      0.419739887455571                          0                 0 0
##      0.425358901761228                          0                 0 0
##      0.594035429893685                          0                 0 0
##      0.671638488556335                          0                 0 0
##      0.688092298985074                          0                 0 0
##      0.806600378227794                          0                 0 0
##      0.867455094638368                          0                 0 0
##      0.897003448844096                          0                 0 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 1.34930555555556 4.020833333 6.15
##      0.000000000123720820519974                0           0    0
##      0.0000000142143709248919                  0           0    0
##      0.0000000203570784591136                  0           0    0
##      0.0000000942663046181582                  0           0    0
##      0.0381424863643358                        0           0    0
##      0.0395235614826762                        0           0    0
##      0.0398504564629362                        0           0    0
##      0.0449831541922517                        0           0    0
##      0.150208567676068                         0           0    0
##      0.291704657263826                         0           0    0
##      0.31263158525612                          0           0    0
##      0.313581394222809                         0           0    0
##      0.399450114450523                         0           0    0
##      0.419739887455571                         0           0    0
##      0.425358901761228                         0           0    0
##      0.594035429893685                         0           0    0
##      0.671638488556335                         0           0    0
##      0.688092298985074                         0           0    0
##      0.806600378227794                         0           0    0
##      0.867455094638368                         0           0    0
##      0.897003448844096                         0           0    0
## 
## , , OTT_Time = 3, Snapchat_Time = 0.153472222222222, Instagram_Time = 0.156944444444444
## 
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.125 0.142361111111111 0.152777777777778
##      0.000000000123720820519974     0                 0                 0
##      0.0000000142143709248919       0                 0                 0
##      0.0000000203570784591136       0                 0                 0
##      0.0000000942663046181582       0                 0                 0
##      0.0381424863643358             0                 0                 0
##      0.0395235614826762             0                 0                 0
##      0.0398504564629362             0                 0                 0
##      0.0449831541922517             0                 0                 0
##      0.150208567676068              0                 0                 0
##      0.291704657263826              0                 0                 0
##      0.31263158525612               0                 0                 0
##      0.313581394222809              0                 0                 0
##      0.399450114450523              0                 0                 0
##      0.419739887455571              0                 0                 0
##      0.425358901761228              0                 0                 0
##      0.594035429893685              0                 0                 0
##      0.671638488556335              0                 0                 0
##      0.688092298985074              0                 0                 0
##      0.806600378227794              0                 0                 0
##      0.867455094638368              0                 0                 0
##      0.897003448844096              0                 0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.174305555555556 0.208333333333333
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.220833333333333 0.25 0.270833333333333
##      0.000000000123720820519974                 0    0                 0
##      0.0000000142143709248919                   0    0                 0
##      0.0000000203570784591136                   0    0                 0
##      0.0000000942663046181582                   0    0                 0
##      0.0381424863643358                         0    0                 0
##      0.0395235614826762                         0    0                 0
##      0.0398504564629362                         0    0                 0
##      0.0449831541922517                         0    0                 0
##      0.150208567676068                          0    0                 0
##      0.291704657263826                          0    0                 0
##      0.31263158525612                           0    0                 0
##      0.313581394222809                          0    0                 0
##      0.399450114450523                          0    0                 0
##      0.419739887455571                          0    0                 0
##      0.425358901761228                          0    0                 0
##      0.594035429893685                          0    0                 0
##      0.671638488556335                          0    0                 0
##      0.688092298985074                          0    0                 0
##      0.806600378227794                          0    0                 0
##      0.867455094638368                          0    0                 0
##      0.897003448844096                          0    0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.289583333333333 0.371527777777778
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.409722222222222 0.416666666666667 0.5 0.55625
##      0.000000000123720820519974                 0                 0   0       0
##      0.0000000142143709248919                   0                 0   0       0
##      0.0000000203570784591136                   0                 0   0       0
##      0.0000000942663046181582                   0                 0   0       0
##      0.0381424863643358                         0                 0   0       0
##      0.0395235614826762                         0                 0   0       0
##      0.0398504564629362                         0                 0   0       0
##      0.0449831541922517                         0                 0   0       0
##      0.150208567676068                          0                 0   0       0
##      0.291704657263826                          0                 0   0       0
##      0.31263158525612                           0                 0   0       0
##      0.313581394222809                          0                 0   0       0
##      0.399450114450523                          0                 0   0       0
##      0.419739887455571                          0                 0   0       0
##      0.425358901761228                          0                 0   0       0
##      0.594035429893685                          0                 0   0       0
##      0.671638488556335                          0                 0   0       0
##      0.688092298985074                          0                 0   0       0
##      0.806600378227794                          0                 0   0       0
##      0.867455094638368                          0                 0   0       0
##      0.897003448844096                          0                 0   0       0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.639583333333333 0.907785087701754 1
##      0.000000000123720820519974                 0                 0 0
##      0.0000000142143709248919                   0                 0 0
##      0.0000000203570784591136                   0                 0 0
##      0.0000000942663046181582                   0                 0 0
##      0.0381424863643358                         0                 0 0
##      0.0395235614826762                         0                 0 0
##      0.0398504564629362                         0                 0 0
##      0.0449831541922517                         0                 0 0
##      0.150208567676068                          0                 0 0
##      0.291704657263826                          0                 0 0
##      0.31263158525612                           0                 0 0
##      0.313581394222809                          0                 0 0
##      0.399450114450523                          0                 0 0
##      0.419739887455571                          0                 0 0
##      0.425358901761228                          0                 0 0
##      0.594035429893685                          0                 0 0
##      0.671638488556335                          0                 0 0
##      0.688092298985074                          0                 0 0
##      0.806600378227794                          0                 0 0
##      0.867455094638368                          0                 0 0
##      0.897003448844096                          0                 0 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 1.34930555555556 4.020833333 6.15
##      0.000000000123720820519974                0           0    0
##      0.0000000142143709248919                  0           0    0
##      0.0000000203570784591136                  0           0    0
##      0.0000000942663046181582                  0           0    0
##      0.0381424863643358                        0           0    0
##      0.0395235614826762                        0           0    0
##      0.0398504564629362                        0           0    0
##      0.0449831541922517                        0           0    0
##      0.150208567676068                         0           0    0
##      0.291704657263826                         0           0    0
##      0.31263158525612                          0           0    0
##      0.313581394222809                         0           0    0
##      0.399450114450523                         0           0    0
##      0.419739887455571                         0           0    0
##      0.425358901761228                         0           0    0
##      0.594035429893685                         0           0    0
##      0.671638488556335                         0           0    0
##      0.688092298985074                         0           0    0
##      0.806600378227794                         0           0    0
##      0.867455094638368                         0           0    0
##      0.897003448844096                         0           0    0
## 
## , , OTT_Time = 14.5, Snapchat_Time = 0.153472222222222, Instagram_Time = 0.156944444444444
## 
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.125 0.142361111111111 0.152777777777778
##      0.000000000123720820519974     0                 0                 0
##      0.0000000142143709248919       0                 0                 0
##      0.0000000203570784591136       0                 0                 0
##      0.0000000942663046181582       0                 0                 0
##      0.0381424863643358             0                 0                 0
##      0.0395235614826762             0                 0                 0
##      0.0398504564629362             0                 0                 0
##      0.0449831541922517             0                 0                 0
##      0.150208567676068              0                 0                 0
##      0.291704657263826              0                 0                 0
##      0.31263158525612               0                 0                 0
##      0.313581394222809              0                 0                 0
##      0.399450114450523              0                 0                 0
##      0.419739887455571              0                 0                 0
##      0.425358901761228              0                 0                 0
##      0.594035429893685              0                 0                 0
##      0.671638488556335              0                 0                 0
##      0.688092298985074              0                 0                 0
##      0.806600378227794              0                 0                 0
##      0.867455094638368              0                 0                 0
##      0.897003448844096              0                 0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.174305555555556 0.208333333333333
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.220833333333333 0.25 0.270833333333333
##      0.000000000123720820519974                 0    0                 0
##      0.0000000142143709248919                   0    0                 0
##      0.0000000203570784591136                   0    0                 0
##      0.0000000942663046181582                   0    0                 0
##      0.0381424863643358                         0    0                 0
##      0.0395235614826762                         0    0                 0
##      0.0398504564629362                         0    0                 0
##      0.0449831541922517                         0    0                 0
##      0.150208567676068                          0    0                 0
##      0.291704657263826                          0    0                 0
##      0.31263158525612                           0    0                 0
##      0.313581394222809                          0    0                 0
##      0.399450114450523                          0    0                 0
##      0.419739887455571                          0    0                 0
##      0.425358901761228                          0    0                 0
##      0.594035429893685                          0    0                 0
##      0.671638488556335                          0    0                 0
##      0.688092298985074                          0    0                 0
##      0.806600378227794                          0    0                 0
##      0.867455094638368                          0    0                 0
##      0.897003448844096                          0    0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.289583333333333 0.371527777777778
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.409722222222222 0.416666666666667 0.5 0.55625
##      0.000000000123720820519974                 0                 0   0       0
##      0.0000000142143709248919                   0                 0   0       0
##      0.0000000203570784591136                   0                 0   0       0
##      0.0000000942663046181582                   0                 0   0       0
##      0.0381424863643358                         0                 0   0       0
##      0.0395235614826762                         0                 0   0       0
##      0.0398504564629362                         0                 0   0       0
##      0.0449831541922517                         0                 0   0       0
##      0.150208567676068                          0                 0   0       0
##      0.291704657263826                          0                 0   0       0
##      0.31263158525612                           0                 0   0       0
##      0.313581394222809                          0                 0   0       0
##      0.399450114450523                          0                 0   0       0
##      0.419739887455571                          0                 0   0       0
##      0.425358901761228                          0                 0   0       0
##      0.594035429893685                          0                 0   0       0
##      0.671638488556335                          0                 0   0       0
##      0.688092298985074                          0                 0   0       0
##      0.806600378227794                          0                 0   0       0
##      0.867455094638368                          0                 0   0       0
##      0.897003448844096                          0                 0   0       0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.639583333333333 0.907785087701754 1
##      0.000000000123720820519974                 0                 0 0
##      0.0000000142143709248919                   0                 0 0
##      0.0000000203570784591136                   0                 0 0
##      0.0000000942663046181582                   0                 0 0
##      0.0381424863643358                         0                 0 0
##      0.0395235614826762                         0                 0 0
##      0.0398504564629362                         0                 0 0
##      0.0449831541922517                         0                 0 0
##      0.150208567676068                          0                 0 0
##      0.291704657263826                          0                 0 0
##      0.31263158525612                           0                 0 0
##      0.313581394222809                          0                 0 0
##      0.399450114450523                          0                 0 0
##      0.419739887455571                          0                 0 0
##      0.425358901761228                          0                 0 0
##      0.594035429893685                          0                 0 0
##      0.671638488556335                          0                 0 0
##      0.688092298985074                          0                 0 0
##      0.806600378227794                          0                 0 0
##      0.867455094638368                          0                 0 0
##      0.897003448844096                          0                 0 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 1.34930555555556 4.020833333 6.15
##      0.000000000123720820519974                0           0    0
##      0.0000000142143709248919                  0           0    0
##      0.0000000203570784591136                  0           0    0
##      0.0000000942663046181582                  0           0    0
##      0.0381424863643358                        0           0    0
##      0.0395235614826762                        0           0    0
##      0.0398504564629362                        0           0    0
##      0.0449831541922517                        0           0    0
##      0.150208567676068                         0           0    0
##      0.291704657263826                         0           0    0
##      0.31263158525612                          0           0    0
##      0.313581394222809                         0           0    0
##      0.399450114450523                         0           0    0
##      0.419739887455571                         0           0    0
##      0.425358901761228                         0           0    0
##      0.594035429893685                         0           0    0
##      0.671638488556335                         0           0    0
##      0.688092298985074                         0           0    0
##      0.806600378227794                         0           0    0
##      0.867455094638368                         0           0    0
##      0.897003448844096                         0           0    0
## 
## , , OTT_Time = 0, Snapchat_Time = 0.304861111111111, Instagram_Time = 0.156944444444444
## 
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.125 0.142361111111111 0.152777777777778
##      0.000000000123720820519974     0                 0                 0
##      0.0000000142143709248919       0                 0                 0
##      0.0000000203570784591136       0                 0                 0
##      0.0000000942663046181582       0                 0                 0
##      0.0381424863643358             0                 0                 0
##      0.0395235614826762             0                 0                 0
##      0.0398504564629362             0                 0                 0
##      0.0449831541922517             0                 0                 0
##      0.150208567676068              0                 0                 0
##      0.291704657263826              0                 0                 0
##      0.31263158525612               0                 0                 0
##      0.313581394222809              0                 0                 0
##      0.399450114450523              0                 0                 0
##      0.419739887455571              0                 0                 0
##      0.425358901761228              0                 0                 0
##      0.594035429893685              0                 0                 0
##      0.671638488556335              0                 0                 0
##      0.688092298985074              0                 0                 0
##      0.806600378227794              0                 0                 0
##      0.867455094638368              0                 0                 0
##      0.897003448844096              0                 0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.174305555555556 0.208333333333333
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.220833333333333 0.25 0.270833333333333
##      0.000000000123720820519974                 0    0                 0
##      0.0000000142143709248919                   0    0                 0
##      0.0000000203570784591136                   0    0                 0
##      0.0000000942663046181582                   0    0                 0
##      0.0381424863643358                         0    0                 0
##      0.0395235614826762                         0    0                 0
##      0.0398504564629362                         0    0                 0
##      0.0449831541922517                         0    0                 0
##      0.150208567676068                          0    0                 0
##      0.291704657263826                          0    0                 0
##      0.31263158525612                           0    0                 0
##      0.313581394222809                          0    0                 0
##      0.399450114450523                          0    0                 0
##      0.419739887455571                          0    0                 0
##      0.425358901761228                          0    0                 0
##      0.594035429893685                          0    0                 0
##      0.671638488556335                          0    0                 0
##      0.688092298985074                          0    0                 0
##      0.806600378227794                          0    0                 0
##      0.867455094638368                          0    0                 0
##      0.897003448844096                          0    0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.289583333333333 0.371527777777778
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.409722222222222 0.416666666666667 0.5 0.55625
##      0.000000000123720820519974                 0                 0   0       0
##      0.0000000142143709248919                   0                 0   0       0
##      0.0000000203570784591136                   0                 0   0       0
##      0.0000000942663046181582                   0                 0   0       0
##      0.0381424863643358                         0                 0   0       0
##      0.0395235614826762                         0                 0   0       0
##      0.0398504564629362                         0                 0   0       0
##      0.0449831541922517                         0                 0   0       0
##      0.150208567676068                          0                 0   0       0
##      0.291704657263826                          0                 0   0       0
##      0.31263158525612                           0                 0   0       0
##      0.313581394222809                          0                 0   0       0
##      0.399450114450523                          0                 0   0       0
##      0.419739887455571                          0                 0   0       0
##      0.425358901761228                          0                 0   0       0
##      0.594035429893685                          0                 0   0       0
##      0.671638488556335                          0                 0   0       0
##      0.688092298985074                          0                 0   0       0
##      0.806600378227794                          0                 0   0       0
##      0.867455094638368                          0                 0   0       0
##      0.897003448844096                          0                 0   0       0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.639583333333333 0.907785087701754 1
##      0.000000000123720820519974                 0                 0 0
##      0.0000000142143709248919                   0                 0 0
##      0.0000000203570784591136                   0                 0 0
##      0.0000000942663046181582                   0                 0 0
##      0.0381424863643358                         0                 0 0
##      0.0395235614826762                         0                 0 0
##      0.0398504564629362                         0                 0 0
##      0.0449831541922517                         0                 0 0
##      0.150208567676068                          0                 0 0
##      0.291704657263826                          0                 0 0
##      0.31263158525612                           0                 0 0
##      0.313581394222809                          0                 0 0
##      0.399450114450523                          0                 0 0
##      0.419739887455571                          0                 0 0
##      0.425358901761228                          0                 0 0
##      0.594035429893685                          0                 0 0
##      0.671638488556335                          0                 0 0
##      0.688092298985074                          0                 0 0
##      0.806600378227794                          0                 0 0
##      0.867455094638368                          0                 0 0
##      0.897003448844096                          0                 0 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 1.34930555555556 4.020833333 6.15
##      0.000000000123720820519974                0           0    0
##      0.0000000142143709248919                  0           0    0
##      0.0000000203570784591136                  0           0    0
##      0.0000000942663046181582                  0           0    0
##      0.0381424863643358                        0           0    0
##      0.0395235614826762                        0           0    0
##      0.0398504564629362                        0           0    0
##      0.0449831541922517                        0           0    0
##      0.150208567676068                         0           0    0
##      0.291704657263826                         0           0    0
##      0.31263158525612                          0           0    0
##      0.313581394222809                         0           0    0
##      0.399450114450523                         0           0    0
##      0.419739887455571                         0           0    0
##      0.425358901761228                         0           0    0
##      0.594035429893685                         0           0    0
##      0.671638488556335                         0           0    0
##      0.688092298985074                         0           0    0
##      0.806600378227794                         0           0    0
##      0.867455094638368                         0           0    0
##      0.897003448844096                         0           0    0
## 
## , , OTT_Time = 0.102777777777778, Snapchat_Time = 0.304861111111111, Instagram_Time = 0.156944444444444
## 
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.125 0.142361111111111 0.152777777777778
##      0.000000000123720820519974     0                 0                 0
##      0.0000000142143709248919       0                 0                 0
##      0.0000000203570784591136       0                 0                 0
##      0.0000000942663046181582       0                 0                 0
##      0.0381424863643358             0                 0                 0
##      0.0395235614826762             0                 0                 0
##      0.0398504564629362             0                 0                 0
##      0.0449831541922517             0                 0                 0
##      0.150208567676068              0                 0                 0
##      0.291704657263826              0                 0                 0
##      0.31263158525612               0                 0                 0
##      0.313581394222809              0                 0                 0
##      0.399450114450523              0                 0                 0
##      0.419739887455571              0                 0                 0
##      0.425358901761228              0                 0                 0
##      0.594035429893685              0                 0                 0
##      0.671638488556335              0                 0                 0
##      0.688092298985074              0                 0                 0
##      0.806600378227794              0                 0                 0
##      0.867455094638368              0                 0                 0
##      0.897003448844096              0                 0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.174305555555556 0.208333333333333
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.220833333333333 0.25 0.270833333333333
##      0.000000000123720820519974                 0    0                 0
##      0.0000000142143709248919                   0    0                 0
##      0.0000000203570784591136                   0    0                 0
##      0.0000000942663046181582                   0    0                 0
##      0.0381424863643358                         0    0                 0
##      0.0395235614826762                         0    0                 0
##      0.0398504564629362                         0    0                 0
##      0.0449831541922517                         0    0                 0
##      0.150208567676068                          0    0                 0
##      0.291704657263826                          0    0                 0
##      0.31263158525612                           0    0                 0
##      0.313581394222809                          0    0                 0
##      0.399450114450523                          0    0                 0
##      0.419739887455571                          0    0                 0
##      0.425358901761228                          0    0                 0
##      0.594035429893685                          0    0                 0
##      0.671638488556335                          0    0                 0
##      0.688092298985074                          0    0                 0
##      0.806600378227794                          0    0                 0
##      0.867455094638368                          0    0                 0
##      0.897003448844096                          0    0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.289583333333333 0.371527777777778
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.409722222222222 0.416666666666667 0.5 0.55625
##      0.000000000123720820519974                 0                 0   0       0
##      0.0000000142143709248919                   0                 0   0       0
##      0.0000000203570784591136                   0                 0   0       0
##      0.0000000942663046181582                   0                 0   0       0
##      0.0381424863643358                         0                 0   0       0
##      0.0395235614826762                         0                 0   0       0
##      0.0398504564629362                         0                 0   0       0
##      0.0449831541922517                         0                 0   0       0
##      0.150208567676068                          0                 0   0       0
##      0.291704657263826                          0                 0   0       0
##      0.31263158525612                           0                 0   0       0
##      0.313581394222809                          0                 0   0       0
##      0.399450114450523                          0                 0   0       0
##      0.419739887455571                          0                 0   0       0
##      0.425358901761228                          0                 0   0       0
##      0.594035429893685                          0                 0   0       0
##      0.671638488556335                          0                 0   0       0
##      0.688092298985074                          0                 0   0       0
##      0.806600378227794                          0                 0   0       0
##      0.867455094638368                          0                 0   0       0
##      0.897003448844096                          0                 0   0       0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.639583333333333 0.907785087701754 1
##      0.000000000123720820519974                 0                 0 0
##      0.0000000142143709248919                   0                 0 0
##      0.0000000203570784591136                   0                 0 0
##      0.0000000942663046181582                   0                 0 0
##      0.0381424863643358                         0                 0 0
##      0.0395235614826762                         0                 0 0
##      0.0398504564629362                         0                 0 0
##      0.0449831541922517                         0                 0 0
##      0.150208567676068                          0                 0 0
##      0.291704657263826                          0                 0 0
##      0.31263158525612                           0                 0 0
##      0.313581394222809                          0                 0 0
##      0.399450114450523                          0                 0 0
##      0.419739887455571                          0                 0 0
##      0.425358901761228                          0                 0 0
##      0.594035429893685                          0                 0 0
##      0.671638488556335                          0                 0 0
##      0.688092298985074                          0                 0 0
##      0.806600378227794                          0                 0 0
##      0.867455094638368                          0                 0 0
##      0.897003448844096                          0                 0 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 1.34930555555556 4.020833333 6.15
##      0.000000000123720820519974                0           0    0
##      0.0000000142143709248919                  0           0    0
##      0.0000000203570784591136                  0           0    0
##      0.0000000942663046181582                  0           0    0
##      0.0381424863643358                        0           0    0
##      0.0395235614826762                        0           0    0
##      0.0398504564629362                        0           0    0
##      0.0449831541922517                        0           0    0
##      0.150208567676068                         0           0    0
##      0.291704657263826                         0           0    0
##      0.31263158525612                          0           0    0
##      0.313581394222809                         0           0    0
##      0.399450114450523                         0           0    0
##      0.419739887455571                         0           0    0
##      0.425358901761228                         0           0    0
##      0.594035429893685                         0           0    0
##      0.671638488556335                         0           0    0
##      0.688092298985074                         0           0    0
##      0.806600378227794                         0           0    0
##      0.867455094638368                         0           0    0
##      0.897003448844096                         0           0    0
## 
## , , OTT_Time = 0.125, Snapchat_Time = 0.304861111111111, Instagram_Time = 0.156944444444444
## 
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.125 0.142361111111111 0.152777777777778
##      0.000000000123720820519974     0                 0                 0
##      0.0000000142143709248919       0                 0                 0
##      0.0000000203570784591136       0                 0                 0
##      0.0000000942663046181582       0                 0                 0
##      0.0381424863643358             0                 0                 0
##      0.0395235614826762             0                 0                 0
##      0.0398504564629362             0                 0                 0
##      0.0449831541922517             0                 0                 0
##      0.150208567676068              0                 0                 0
##      0.291704657263826              0                 0                 0
##      0.31263158525612               0                 0                 0
##      0.313581394222809              0                 0                 0
##      0.399450114450523              0                 0                 0
##      0.419739887455571              0                 0                 0
##      0.425358901761228              0                 0                 0
##      0.594035429893685              0                 0                 0
##      0.671638488556335              0                 0                 0
##      0.688092298985074              0                 0                 0
##      0.806600378227794              0                 0                 0
##      0.867455094638368              0                 0                 0
##      0.897003448844096              0                 0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.174305555555556 0.208333333333333
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.220833333333333 0.25 0.270833333333333
##      0.000000000123720820519974                 0    0                 0
##      0.0000000142143709248919                   0    0                 0
##      0.0000000203570784591136                   0    0                 0
##      0.0000000942663046181582                   0    0                 0
##      0.0381424863643358                         0    0                 0
##      0.0395235614826762                         0    0                 0
##      0.0398504564629362                         0    0                 0
##      0.0449831541922517                         0    0                 0
##      0.150208567676068                          0    0                 0
##      0.291704657263826                          0    0                 0
##      0.31263158525612                           0    0                 0
##      0.313581394222809                          0    0                 0
##      0.399450114450523                          0    0                 0
##      0.419739887455571                          0    0                 0
##      0.425358901761228                          0    0                 0
##      0.594035429893685                          0    0                 0
##      0.671638488556335                          0    0                 0
##      0.688092298985074                          0    0                 0
##      0.806600378227794                          0    0                 0
##      0.867455094638368                          0    0                 0
##      0.897003448844096                          0    0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.289583333333333 0.371527777777778
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.409722222222222 0.416666666666667 0.5 0.55625
##      0.000000000123720820519974                 0                 0   0       0
##      0.0000000142143709248919                   0                 0   0       0
##      0.0000000203570784591136                   0                 0   0       0
##      0.0000000942663046181582                   0                 0   0       0
##      0.0381424863643358                         0                 0   0       0
##      0.0395235614826762                         0                 0   0       0
##      0.0398504564629362                         0                 0   0       0
##      0.0449831541922517                         0                 0   0       0
##      0.150208567676068                          0                 0   0       0
##      0.291704657263826                          0                 0   0       0
##      0.31263158525612                           0                 0   0       0
##      0.313581394222809                          0                 0   0       0
##      0.399450114450523                          0                 0   0       0
##      0.419739887455571                          0                 0   0       0
##      0.425358901761228                          0                 0   0       0
##      0.594035429893685                          0                 0   0       0
##      0.671638488556335                          0                 0   0       0
##      0.688092298985074                          0                 0   0       0
##      0.806600378227794                          0                 0   0       0
##      0.867455094638368                          0                 0   0       0
##      0.897003448844096                          0                 0   0       0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.639583333333333 0.907785087701754 1
##      0.000000000123720820519974                 0                 0 0
##      0.0000000142143709248919                   0                 0 0
##      0.0000000203570784591136                   0                 0 0
##      0.0000000942663046181582                   0                 0 0
##      0.0381424863643358                         0                 0 0
##      0.0395235614826762                         0                 0 0
##      0.0398504564629362                         0                 0 0
##      0.0449831541922517                         0                 0 0
##      0.150208567676068                          0                 0 0
##      0.291704657263826                          0                 0 0
##      0.31263158525612                           0                 0 0
##      0.313581394222809                          0                 0 0
##      0.399450114450523                          0                 0 0
##      0.419739887455571                          0                 0 0
##      0.425358901761228                          0                 0 0
##      0.594035429893685                          0                 0 0
##      0.671638488556335                          0                 0 0
##      0.688092298985074                          0                 0 0
##      0.806600378227794                          0                 0 0
##      0.867455094638368                          0                 0 0
##      0.897003448844096                          0                 0 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 1.34930555555556 4.020833333 6.15
##      0.000000000123720820519974                0           0    0
##      0.0000000142143709248919                  0           0    0
##      0.0000000203570784591136                  0           0    0
##      0.0000000942663046181582                  0           0    0
##      0.0381424863643358                        0           0    0
##      0.0395235614826762                        0           0    0
##      0.0398504564629362                        0           0    0
##      0.0449831541922517                        0           0    0
##      0.150208567676068                         0           0    0
##      0.291704657263826                         0           0    0
##      0.31263158525612                          0           0    0
##      0.313581394222809                         0           0    0
##      0.399450114450523                         0           0    0
##      0.419739887455571                         0           0    0
##      0.425358901761228                         0           0    0
##      0.594035429893685                         0           0    0
##      0.671638488556335                         0           0    0
##      0.688092298985074                         0           0    0
##      0.806600378227794                         0           0    0
##      0.867455094638368                         0           0    0
##      0.897003448844096                         0           0    0
## 
## , , OTT_Time = 0.416666666666667, Snapchat_Time = 0.304861111111111, Instagram_Time = 0.156944444444444
## 
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.125 0.142361111111111 0.152777777777778
##      0.000000000123720820519974     0                 0                 0
##      0.0000000142143709248919       0                 0                 0
##      0.0000000203570784591136       0                 0                 0
##      0.0000000942663046181582       0                 0                 0
##      0.0381424863643358             0                 0                 0
##      0.0395235614826762             0                 0                 0
##      0.0398504564629362             0                 0                 0
##      0.0449831541922517             0                 0                 0
##      0.150208567676068              0                 0                 0
##      0.291704657263826              0                 0                 0
##      0.31263158525612               0                 0                 0
##      0.313581394222809              0                 0                 0
##      0.399450114450523              0                 0                 0
##      0.419739887455571              0                 0                 0
##      0.425358901761228              0                 0                 0
##      0.594035429893685              0                 0                 0
##      0.671638488556335              0                 0                 0
##      0.688092298985074              0                 0                 0
##      0.806600378227794              0                 0                 0
##      0.867455094638368              0                 0                 0
##      0.897003448844096              0                 0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.174305555555556 0.208333333333333
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.220833333333333 0.25 0.270833333333333
##      0.000000000123720820519974                 0    0                 0
##      0.0000000142143709248919                   0    0                 0
##      0.0000000203570784591136                   0    0                 0
##      0.0000000942663046181582                   0    0                 0
##      0.0381424863643358                         0    0                 0
##      0.0395235614826762                         0    0                 0
##      0.0398504564629362                         0    0                 0
##      0.0449831541922517                         0    0                 0
##      0.150208567676068                          0    0                 0
##      0.291704657263826                          0    0                 0
##      0.31263158525612                           0    0                 0
##      0.313581394222809                          0    0                 0
##      0.399450114450523                          0    0                 0
##      0.419739887455571                          0    0                 0
##      0.425358901761228                          0    0                 0
##      0.594035429893685                          0    0                 0
##      0.671638488556335                          0    0                 0
##      0.688092298985074                          0    0                 0
##      0.806600378227794                          0    0                 0
##      0.867455094638368                          0    0                 0
##      0.897003448844096                          0    0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.289583333333333 0.371527777777778
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.409722222222222 0.416666666666667 0.5 0.55625
##      0.000000000123720820519974                 0                 0   0       0
##      0.0000000142143709248919                   0                 0   0       0
##      0.0000000203570784591136                   0                 0   0       0
##      0.0000000942663046181582                   0                 0   0       0
##      0.0381424863643358                         0                 0   0       0
##      0.0395235614826762                         0                 0   0       0
##      0.0398504564629362                         0                 0   0       0
##      0.0449831541922517                         0                 0   0       0
##      0.150208567676068                          0                 0   0       0
##      0.291704657263826                          0                 0   0       0
##      0.31263158525612                           0                 0   0       0
##      0.313581394222809                          0                 0   0       0
##      0.399450114450523                          0                 0   0       0
##      0.419739887455571                          0                 0   0       0
##      0.425358901761228                          0                 0   0       0
##      0.594035429893685                          0                 0   0       0
##      0.671638488556335                          0                 0   0       0
##      0.688092298985074                          0                 0   0       0
##      0.806600378227794                          0                 0   0       0
##      0.867455094638368                          0                 0   0       0
##      0.897003448844096                          0                 0   0       0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.639583333333333 0.907785087701754 1
##      0.000000000123720820519974                 0                 0 0
##      0.0000000142143709248919                   0                 0 0
##      0.0000000203570784591136                   0                 0 0
##      0.0000000942663046181582                   0                 0 0
##      0.0381424863643358                         0                 0 0
##      0.0395235614826762                         0                 0 0
##      0.0398504564629362                         0                 0 0
##      0.0449831541922517                         0                 0 0
##      0.150208567676068                          0                 0 0
##      0.291704657263826                          0                 0 0
##      0.31263158525612                           0                 0 0
##      0.313581394222809                          0                 0 0
##      0.399450114450523                          0                 0 0
##      0.419739887455571                          0                 0 0
##      0.425358901761228                          0                 0 0
##      0.594035429893685                          0                 0 0
##      0.671638488556335                          0                 0 0
##      0.688092298985074                          0                 0 0
##      0.806600378227794                          0                 0 0
##      0.867455094638368                          0                 0 0
##      0.897003448844096                          0                 0 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 1.34930555555556 4.020833333 6.15
##      0.000000000123720820519974                0           0    0
##      0.0000000142143709248919                  0           0    0
##      0.0000000203570784591136                  0           0    0
##      0.0000000942663046181582                  0           0    0
##      0.0381424863643358                        0           0    0
##      0.0395235614826762                        0           0    0
##      0.0398504564629362                        0           0    0
##      0.0449831541922517                        0           0    0
##      0.150208567676068                         0           0    0
##      0.291704657263826                         0           0    0
##      0.31263158525612                          0           0    0
##      0.313581394222809                         0           0    0
##      0.399450114450523                         0           0    0
##      0.419739887455571                         0           0    0
##      0.425358901761228                         0           0    0
##      0.594035429893685                         0           0    0
##      0.671638488556335                         0           0    0
##      0.688092298985074                         0           0    0
##      0.806600378227794                         0           0    0
##      0.867455094638368                         0           0    0
##      0.897003448844096                         0           0    0
## 
## , , OTT_Time = 0.5104166667, Snapchat_Time = 0.304861111111111, Instagram_Time = 0.156944444444444
## 
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.125 0.142361111111111 0.152777777777778
##      0.000000000123720820519974     0                 0                 0
##      0.0000000142143709248919       0                 0                 0
##      0.0000000203570784591136       0                 0                 0
##      0.0000000942663046181582       0                 0                 0
##      0.0381424863643358             0                 0                 0
##      0.0395235614826762             0                 0                 0
##      0.0398504564629362             0                 0                 0
##      0.0449831541922517             0                 0                 0
##      0.150208567676068              0                 0                 0
##      0.291704657263826              0                 0                 0
##      0.31263158525612               0                 0                 0
##      0.313581394222809              0                 0                 0
##      0.399450114450523              0                 0                 0
##      0.419739887455571              0                 0                 0
##      0.425358901761228              0                 0                 0
##      0.594035429893685              0                 0                 0
##      0.671638488556335              0                 0                 0
##      0.688092298985074              0                 0                 0
##      0.806600378227794              0                 0                 0
##      0.867455094638368              0                 0                 0
##      0.897003448844096              0                 0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.174305555555556 0.208333333333333
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.220833333333333 0.25 0.270833333333333
##      0.000000000123720820519974                 0    0                 0
##      0.0000000142143709248919                   0    0                 0
##      0.0000000203570784591136                   0    0                 0
##      0.0000000942663046181582                   0    0                 0
##      0.0381424863643358                         0    0                 0
##      0.0395235614826762                         0    0                 0
##      0.0398504564629362                         0    0                 0
##      0.0449831541922517                         0    0                 0
##      0.150208567676068                          0    0                 0
##      0.291704657263826                          0    0                 0
##      0.31263158525612                           0    0                 0
##      0.313581394222809                          0    0                 0
##      0.399450114450523                          0    0                 0
##      0.419739887455571                          0    0                 0
##      0.425358901761228                          0    0                 0
##      0.594035429893685                          0    0                 0
##      0.671638488556335                          0    0                 0
##      0.688092298985074                          0    0                 0
##      0.806600378227794                          0    0                 0
##      0.867455094638368                          0    0                 0
##      0.897003448844096                          0    0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.289583333333333 0.371527777777778
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.409722222222222 0.416666666666667 0.5 0.55625
##      0.000000000123720820519974                 0                 0   0       0
##      0.0000000142143709248919                   0                 0   0       0
##      0.0000000203570784591136                   0                 0   0       0
##      0.0000000942663046181582                   0                 0   0       0
##      0.0381424863643358                         0                 0   0       0
##      0.0395235614826762                         0                 0   0       0
##      0.0398504564629362                         0                 0   0       0
##      0.0449831541922517                         0                 0   0       0
##      0.150208567676068                          0                 0   0       0
##      0.291704657263826                          0                 0   0       0
##      0.31263158525612                           0                 0   0       0
##      0.313581394222809                          0                 0   0       0
##      0.399450114450523                          0                 0   0       0
##      0.419739887455571                          0                 0   0       0
##      0.425358901761228                          0                 0   0       0
##      0.594035429893685                          0                 0   0       0
##      0.671638488556335                          0                 0   0       0
##      0.688092298985074                          0                 0   0       0
##      0.806600378227794                          0                 0   0       0
##      0.867455094638368                          0                 0   0       0
##      0.897003448844096                          0                 0   0       0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.639583333333333 0.907785087701754 1
##      0.000000000123720820519974                 0                 0 0
##      0.0000000142143709248919                   0                 0 0
##      0.0000000203570784591136                   0                 0 0
##      0.0000000942663046181582                   0                 0 0
##      0.0381424863643358                         0                 0 0
##      0.0395235614826762                         0                 0 0
##      0.0398504564629362                         0                 0 0
##      0.0449831541922517                         0                 0 0
##      0.150208567676068                          0                 0 0
##      0.291704657263826                          0                 0 0
##      0.31263158525612                           0                 0 0
##      0.313581394222809                          0                 0 0
##      0.399450114450523                          0                 0 0
##      0.419739887455571                          0                 0 0
##      0.425358901761228                          0                 0 0
##      0.594035429893685                          0                 0 0
##      0.671638488556335                          0                 0 0
##      0.688092298985074                          0                 0 0
##      0.806600378227794                          0                 0 0
##      0.867455094638368                          0                 0 0
##      0.897003448844096                          0                 0 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 1.34930555555556 4.020833333 6.15
##      0.000000000123720820519974                0           0    0
##      0.0000000142143709248919                  0           0    0
##      0.0000000203570784591136                  0           0    0
##      0.0000000942663046181582                  0           0    0
##      0.0381424863643358                        0           0    0
##      0.0395235614826762                        0           0    0
##      0.0398504564629362                        0           0    0
##      0.0449831541922517                        0           0    0
##      0.150208567676068                         0           0    0
##      0.291704657263826                         0           0    0
##      0.31263158525612                          0           0    0
##      0.313581394222809                         0           0    0
##      0.399450114450523                         0           0    0
##      0.419739887455571                         0           0    0
##      0.425358901761228                         0           0    0
##      0.594035429893685                         0           0    0
##      0.671638488556335                         0           0    0
##      0.688092298985074                         0           0    0
##      0.806600378227794                         0           0    0
##      0.867455094638368                         0           0    0
##      0.897003448844096                         0           0    0
## 
## , , OTT_Time = 1.44460470085726, Snapchat_Time = 0.304861111111111, Instagram_Time = 0.156944444444444
## 
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.125 0.142361111111111 0.152777777777778
##      0.000000000123720820519974     0                 0                 0
##      0.0000000142143709248919       0                 0                 0
##      0.0000000203570784591136       0                 0                 0
##      0.0000000942663046181582       0                 0                 0
##      0.0381424863643358             0                 0                 0
##      0.0395235614826762             0                 0                 0
##      0.0398504564629362             0                 0                 0
##      0.0449831541922517             0                 0                 0
##      0.150208567676068              0                 0                 0
##      0.291704657263826              0                 0                 0
##      0.31263158525612               0                 0                 0
##      0.313581394222809              0                 0                 0
##      0.399450114450523              0                 0                 0
##      0.419739887455571              0                 0                 0
##      0.425358901761228              0                 0                 0
##      0.594035429893685              0                 0                 0
##      0.671638488556335              0                 0                 0
##      0.688092298985074              0                 0                 0
##      0.806600378227794              0                 0                 0
##      0.867455094638368              0                 0                 0
##      0.897003448844096              0                 0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.174305555555556 0.208333333333333
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.220833333333333 0.25 0.270833333333333
##      0.000000000123720820519974                 0    0                 0
##      0.0000000142143709248919                   0    0                 0
##      0.0000000203570784591136                   0    0                 0
##      0.0000000942663046181582                   0    0                 0
##      0.0381424863643358                         0    0                 0
##      0.0395235614826762                         0    0                 0
##      0.0398504564629362                         0    0                 0
##      0.0449831541922517                         0    0                 0
##      0.150208567676068                          0    0                 0
##      0.291704657263826                          0    0                 0
##      0.31263158525612                           0    0                 0
##      0.313581394222809                          0    0                 0
##      0.399450114450523                          0    0                 0
##      0.419739887455571                          0    0                 0
##      0.425358901761228                          0    0                 0
##      0.594035429893685                          0    0                 0
##      0.671638488556335                          0    0                 0
##      0.688092298985074                          0    0                 0
##      0.806600378227794                          0    0                 0
##      0.867455094638368                          0    0                 0
##      0.897003448844096                          0    0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.289583333333333 0.371527777777778
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.409722222222222 0.416666666666667 0.5 0.55625
##      0.000000000123720820519974                 0                 0   0       0
##      0.0000000142143709248919                   0                 0   0       0
##      0.0000000203570784591136                   0                 0   0       0
##      0.0000000942663046181582                   0                 0   0       0
##      0.0381424863643358                         0                 0   0       0
##      0.0395235614826762                         0                 0   0       0
##      0.0398504564629362                         0                 0   0       0
##      0.0449831541922517                         0                 0   0       0
##      0.150208567676068                          0                 0   0       0
##      0.291704657263826                          0                 0   0       0
##      0.31263158525612                           0                 0   0       0
##      0.313581394222809                          0                 0   0       0
##      0.399450114450523                          0                 0   0       0
##      0.419739887455571                          0                 0   0       0
##      0.425358901761228                          0                 0   0       0
##      0.594035429893685                          0                 0   0       0
##      0.671638488556335                          0                 0   0       0
##      0.688092298985074                          0                 0   0       0
##      0.806600378227794                          0                 0   0       0
##      0.867455094638368                          0                 0   0       0
##      0.897003448844096                          0                 0   0       0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.639583333333333 0.907785087701754 1
##      0.000000000123720820519974                 0                 0 0
##      0.0000000142143709248919                   0                 0 0
##      0.0000000203570784591136                   0                 0 0
##      0.0000000942663046181582                   0                 0 0
##      0.0381424863643358                         0                 0 0
##      0.0395235614826762                         0                 0 0
##      0.0398504564629362                         0                 0 0
##      0.0449831541922517                         0                 0 0
##      0.150208567676068                          0                 0 0
##      0.291704657263826                          0                 0 0
##      0.31263158525612                           0                 0 0
##      0.313581394222809                          0                 0 0
##      0.399450114450523                          0                 0 0
##      0.419739887455571                          0                 0 0
##      0.425358901761228                          0                 0 0
##      0.594035429893685                          0                 0 0
##      0.671638488556335                          0                 0 0
##      0.688092298985074                          0                 0 0
##      0.806600378227794                          0                 0 0
##      0.867455094638368                          0                 0 0
##      0.897003448844096                          0                 0 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 1.34930555555556 4.020833333 6.15
##      0.000000000123720820519974                0           0    0
##      0.0000000142143709248919                  0           0    0
##      0.0000000203570784591136                  0           0    0
##      0.0000000942663046181582                  0           0    0
##      0.0381424863643358                        0           0    0
##      0.0395235614826762                        0           0    0
##      0.0398504564629362                        0           0    0
##      0.0449831541922517                        0           0    0
##      0.150208567676068                         0           0    0
##      0.291704657263826                         0           0    0
##      0.31263158525612                          0           0    0
##      0.313581394222809                         0           0    0
##      0.399450114450523                         0           0    0
##      0.419739887455571                         0           0    0
##      0.425358901761228                         0           0    0
##      0.594035429893685                         0           0    0
##      0.671638488556335                         0           0    0
##      0.688092298985074                         0           0    0
##      0.806600378227794                         0           0    0
##      0.867455094638368                         0           0    0
##      0.897003448844096                         0           0    0
## 
## , , OTT_Time = 3, Snapchat_Time = 0.304861111111111, Instagram_Time = 0.156944444444444
## 
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.125 0.142361111111111 0.152777777777778
##      0.000000000123720820519974     0                 0                 0
##      0.0000000142143709248919       0                 0                 0
##      0.0000000203570784591136       0                 0                 0
##      0.0000000942663046181582       0                 0                 0
##      0.0381424863643358             0                 0                 0
##      0.0395235614826762             0                 0                 0
##      0.0398504564629362             0                 0                 0
##      0.0449831541922517             0                 0                 0
##      0.150208567676068              0                 0                 0
##      0.291704657263826              0                 0                 0
##      0.31263158525612               0                 0                 0
##      0.313581394222809              0                 0                 0
##      0.399450114450523              0                 0                 0
##      0.419739887455571              0                 0                 0
##      0.425358901761228              0                 0                 0
##      0.594035429893685              0                 0                 0
##      0.671638488556335              0                 0                 0
##      0.688092298985074              0                 0                 0
##      0.806600378227794              0                 0                 0
##      0.867455094638368              0                 0                 0
##      0.897003448844096              0                 0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.174305555555556 0.208333333333333
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.220833333333333 0.25 0.270833333333333
##      0.000000000123720820519974                 0    0                 0
##      0.0000000142143709248919                   0    0                 0
##      0.0000000203570784591136                   0    0                 0
##      0.0000000942663046181582                   0    0                 0
##      0.0381424863643358                         0    0                 0
##      0.0395235614826762                         0    0                 0
##      0.0398504564629362                         0    0                 0
##      0.0449831541922517                         0    0                 0
##      0.150208567676068                          0    0                 0
##      0.291704657263826                          0    0                 0
##      0.31263158525612                           0    0                 0
##      0.313581394222809                          0    0                 0
##      0.399450114450523                          0    0                 0
##      0.419739887455571                          0    0                 0
##      0.425358901761228                          0    0                 0
##      0.594035429893685                          0    0                 0
##      0.671638488556335                          0    0                 0
##      0.688092298985074                          0    0                 0
##      0.806600378227794                          0    0                 0
##      0.867455094638368                          0    0                 0
##      0.897003448844096                          0    0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.289583333333333 0.371527777777778
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.409722222222222 0.416666666666667 0.5 0.55625
##      0.000000000123720820519974                 0                 0   0       0
##      0.0000000142143709248919                   0                 0   0       0
##      0.0000000203570784591136                   0                 0   0       0
##      0.0000000942663046181582                   0                 0   0       0
##      0.0381424863643358                         0                 0   0       0
##      0.0395235614826762                         0                 0   0       0
##      0.0398504564629362                         0                 0   0       0
##      0.0449831541922517                         0                 0   0       0
##      0.150208567676068                          0                 0   0       0
##      0.291704657263826                          0                 0   0       0
##      0.31263158525612                           0                 0   0       0
##      0.313581394222809                          0                 0   0       0
##      0.399450114450523                          0                 0   0       0
##      0.419739887455571                          0                 0   0       0
##      0.425358901761228                          0                 0   0       0
##      0.594035429893685                          0                 0   0       0
##      0.671638488556335                          0                 0   0       0
##      0.688092298985074                          0                 0   0       0
##      0.806600378227794                          0                 0   0       0
##      0.867455094638368                          0                 0   0       0
##      0.897003448844096                          0                 0   0       0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.639583333333333 0.907785087701754 1
##      0.000000000123720820519974                 0                 0 0
##      0.0000000142143709248919                   0                 0 0
##      0.0000000203570784591136                   0                 0 0
##      0.0000000942663046181582                   0                 0 0
##      0.0381424863643358                         0                 0 0
##      0.0395235614826762                         0                 0 0
##      0.0398504564629362                         0                 0 0
##      0.0449831541922517                         0                 0 0
##      0.150208567676068                          0                 0 0
##      0.291704657263826                          0                 0 0
##      0.31263158525612                           0                 0 0
##      0.313581394222809                          0                 0 0
##      0.399450114450523                          0                 0 0
##      0.419739887455571                          0                 0 0
##      0.425358901761228                          0                 0 0
##      0.594035429893685                          0                 0 0
##      0.671638488556335                          0                 0 0
##      0.688092298985074                          0                 0 0
##      0.806600378227794                          0                 0 0
##      0.867455094638368                          0                 0 0
##      0.897003448844096                          0                 0 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 1.34930555555556 4.020833333 6.15
##      0.000000000123720820519974                0           0    0
##      0.0000000142143709248919                  0           0    0
##      0.0000000203570784591136                  0           0    0
##      0.0000000942663046181582                  0           0    0
##      0.0381424863643358                        0           0    0
##      0.0395235614826762                        0           0    0
##      0.0398504564629362                        0           0    0
##      0.0449831541922517                        0           0    0
##      0.150208567676068                         0           0    0
##      0.291704657263826                         0           0    0
##      0.31263158525612                          0           0    0
##      0.313581394222809                         0           0    0
##      0.399450114450523                         0           0    0
##      0.419739887455571                         0           0    0
##      0.425358901761228                         0           0    0
##      0.594035429893685                         0           0    0
##      0.671638488556335                         0           0    0
##      0.688092298985074                         0           0    0
##      0.806600378227794                         0           0    0
##      0.867455094638368                         0           0    0
##      0.897003448844096                         0           0    0
## 
## , , OTT_Time = 14.5, Snapchat_Time = 0.304861111111111, Instagram_Time = 0.156944444444444
## 
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.125 0.142361111111111 0.152777777777778
##      0.000000000123720820519974     0                 0                 0
##      0.0000000142143709248919       0                 0                 0
##      0.0000000203570784591136       0                 0                 0
##      0.0000000942663046181582       0                 0                 0
##      0.0381424863643358             0                 0                 0
##      0.0395235614826762             0                 0                 0
##      0.0398504564629362             0                 0                 0
##      0.0449831541922517             0                 0                 0
##      0.150208567676068              0                 0                 0
##      0.291704657263826              0                 0                 0
##      0.31263158525612               0                 0                 0
##      0.313581394222809              0                 0                 0
##      0.399450114450523              0                 0                 0
##      0.419739887455571              0                 0                 0
##      0.425358901761228              0                 0                 0
##      0.594035429893685              0                 0                 0
##      0.671638488556335              0                 0                 0
##      0.688092298985074              0                 0                 0
##      0.806600378227794              0                 0                 0
##      0.867455094638368              0                 0                 0
##      0.897003448844096              0                 0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.174305555555556 0.208333333333333
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.220833333333333 0.25 0.270833333333333
##      0.000000000123720820519974                 0    0                 0
##      0.0000000142143709248919                   0    0                 0
##      0.0000000203570784591136                   0    0                 0
##      0.0000000942663046181582                   0    0                 0
##      0.0381424863643358                         0    0                 0
##      0.0395235614826762                         0    0                 0
##      0.0398504564629362                         0    0                 0
##      0.0449831541922517                         0    0                 0
##      0.150208567676068                          0    0                 0
##      0.291704657263826                          0    0                 0
##      0.31263158525612                           0    0                 0
##      0.313581394222809                          0    0                 0
##      0.399450114450523                          0    0                 0
##      0.419739887455571                          0    0                 0
##      0.425358901761228                          0    0                 0
##      0.594035429893685                          0    0                 0
##      0.671638488556335                          0    0                 0
##      0.688092298985074                          0    0                 0
##      0.806600378227794                          0    0                 0
##      0.867455094638368                          0    0                 0
##      0.897003448844096                          0    0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.289583333333333 0.371527777777778
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.409722222222222 0.416666666666667 0.5 0.55625
##      0.000000000123720820519974                 0                 0   0       0
##      0.0000000142143709248919                   0                 0   0       0
##      0.0000000203570784591136                   0                 0   0       0
##      0.0000000942663046181582                   0                 0   0       0
##      0.0381424863643358                         0                 0   0       0
##      0.0395235614826762                         0                 0   0       0
##      0.0398504564629362                         0                 0   0       0
##      0.0449831541922517                         0                 0   0       0
##      0.150208567676068                          0                 0   0       0
##      0.291704657263826                          0                 0   0       0
##      0.31263158525612                           0                 0   0       0
##      0.313581394222809                          0                 0   0       0
##      0.399450114450523                          0                 0   0       0
##      0.419739887455571                          0                 0   0       0
##      0.425358901761228                          0                 0   0       0
##      0.594035429893685                          0                 0   0       0
##      0.671638488556335                          0                 0   0       0
##      0.688092298985074                          0                 0   0       0
##      0.806600378227794                          0                 0   0       0
##      0.867455094638368                          0                 0   0       0
##      0.897003448844096                          0                 0   0       0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.639583333333333 0.907785087701754 1
##      0.000000000123720820519974                 0                 0 0
##      0.0000000142143709248919                   0                 0 0
##      0.0000000203570784591136                   0                 0 0
##      0.0000000942663046181582                   0                 0 0
##      0.0381424863643358                         0                 0 0
##      0.0395235614826762                         0                 0 0
##      0.0398504564629362                         0                 0 0
##      0.0449831541922517                         0                 0 0
##      0.150208567676068                          0                 0 0
##      0.291704657263826                          0                 0 0
##      0.31263158525612                           0                 0 0
##      0.313581394222809                          0                 0 0
##      0.399450114450523                          0                 0 0
##      0.419739887455571                          0                 0 0
##      0.425358901761228                          0                 0 0
##      0.594035429893685                          0                 0 0
##      0.671638488556335                          0                 0 0
##      0.688092298985074                          0                 0 0
##      0.806600378227794                          0                 0 0
##      0.867455094638368                          0                 0 0
##      0.897003448844096                          0                 0 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 1.34930555555556 4.020833333 6.15
##      0.000000000123720820519974                0           0    0
##      0.0000000142143709248919                  0           0    0
##      0.0000000203570784591136                  0           0    0
##      0.0000000942663046181582                  0           0    0
##      0.0381424863643358                        0           0    0
##      0.0395235614826762                        0           0    0
##      0.0398504564629362                        0           0    0
##      0.0449831541922517                        0           0    0
##      0.150208567676068                         0           0    0
##      0.291704657263826                         0           0    0
##      0.31263158525612                          0           0    0
##      0.313581394222809                         0           0    0
##      0.399450114450523                         0           0    0
##      0.419739887455571                         0           0    0
##      0.425358901761228                         0           0    0
##      0.594035429893685                         0           0    0
##      0.671638488556335                         0           0    0
##      0.688092298985074                         0           0    0
##      0.806600378227794                         0           0    0
##      0.867455094638368                         0           0    0
##      0.897003448844096                         0           0    0
## 
## , , OTT_Time = 0, Snapchat_Time = 0.503124999997222, Instagram_Time = 0.156944444444444
## 
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.125 0.142361111111111 0.152777777777778
##      0.000000000123720820519974     0                 0                 0
##      0.0000000142143709248919       0                 0                 0
##      0.0000000203570784591136       0                 0                 0
##      0.0000000942663046181582       0                 0                 0
##      0.0381424863643358             0                 0                 0
##      0.0395235614826762             0                 0                 0
##      0.0398504564629362             0                 0                 0
##      0.0449831541922517             0                 0                 0
##      0.150208567676068              0                 0                 0
##      0.291704657263826              0                 0                 0
##      0.31263158525612               0                 0                 0
##      0.313581394222809              0                 0                 0
##      0.399450114450523              0                 0                 0
##      0.419739887455571              0                 0                 0
##      0.425358901761228              0                 0                 0
##      0.594035429893685              0                 0                 0
##      0.671638488556335              0                 0                 0
##      0.688092298985074              0                 0                 0
##      0.806600378227794              0                 0                 0
##      0.867455094638368              0                 0                 0
##      0.897003448844096              0                 0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.174305555555556 0.208333333333333
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.220833333333333 0.25 0.270833333333333
##      0.000000000123720820519974                 0    0                 0
##      0.0000000142143709248919                   0    0                 0
##      0.0000000203570784591136                   0    0                 0
##      0.0000000942663046181582                   0    0                 0
##      0.0381424863643358                         0    0                 0
##      0.0395235614826762                         0    0                 0
##      0.0398504564629362                         0    0                 0
##      0.0449831541922517                         0    0                 0
##      0.150208567676068                          0    0                 0
##      0.291704657263826                          0    0                 0
##      0.31263158525612                           0    0                 0
##      0.313581394222809                          0    0                 0
##      0.399450114450523                          0    0                 0
##      0.419739887455571                          0    0                 0
##      0.425358901761228                          0    0                 0
##      0.594035429893685                          0    0                 0
##      0.671638488556335                          0    0                 0
##      0.688092298985074                          0    0                 0
##      0.806600378227794                          0    0                 0
##      0.867455094638368                          0    0                 0
##      0.897003448844096                          0    0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.289583333333333 0.371527777777778
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.409722222222222 0.416666666666667 0.5 0.55625
##      0.000000000123720820519974                 0                 0   0       0
##      0.0000000142143709248919                   0                 0   0       0
##      0.0000000203570784591136                   0                 0   0       0
##      0.0000000942663046181582                   0                 0   0       0
##      0.0381424863643358                         0                 0   0       0
##      0.0395235614826762                         0                 0   0       0
##      0.0398504564629362                         0                 0   0       0
##      0.0449831541922517                         0                 0   0       0
##      0.150208567676068                          0                 0   0       0
##      0.291704657263826                          0                 0   0       0
##      0.31263158525612                           0                 0   0       0
##      0.313581394222809                          0                 0   0       0
##      0.399450114450523                          0                 0   0       0
##      0.419739887455571                          0                 0   0       0
##      0.425358901761228                          0                 0   0       0
##      0.594035429893685                          0                 0   0       0
##      0.671638488556335                          0                 0   0       0
##      0.688092298985074                          0                 0   0       0
##      0.806600378227794                          0                 0   0       0
##      0.867455094638368                          0                 0   0       0
##      0.897003448844096                          0                 0   0       0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.639583333333333 0.907785087701754 1
##      0.000000000123720820519974                 0                 0 0
##      0.0000000142143709248919                   0                 0 0
##      0.0000000203570784591136                   0                 0 0
##      0.0000000942663046181582                   0                 0 0
##      0.0381424863643358                         0                 0 0
##      0.0395235614826762                         0                 0 0
##      0.0398504564629362                         0                 0 0
##      0.0449831541922517                         0                 0 0
##      0.150208567676068                          0                 0 0
##      0.291704657263826                          0                 0 0
##      0.31263158525612                           0                 0 0
##      0.313581394222809                          0                 0 0
##      0.399450114450523                          0                 0 0
##      0.419739887455571                          0                 0 0
##      0.425358901761228                          0                 0 0
##      0.594035429893685                          0                 0 0
##      0.671638488556335                          0                 0 0
##      0.688092298985074                          0                 0 0
##      0.806600378227794                          0                 0 0
##      0.867455094638368                          0                 0 0
##      0.897003448844096                          0                 0 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 1.34930555555556 4.020833333 6.15
##      0.000000000123720820519974                0           0    0
##      0.0000000142143709248919                  0           0    0
##      0.0000000203570784591136                  0           0    0
##      0.0000000942663046181582                  0           0    0
##      0.0381424863643358                        0           0    0
##      0.0395235614826762                        0           0    0
##      0.0398504564629362                        0           0    0
##      0.0449831541922517                        0           0    0
##      0.150208567676068                         0           0    0
##      0.291704657263826                         0           0    0
##      0.31263158525612                          0           0    0
##      0.313581394222809                         0           0    0
##      0.399450114450523                         0           0    0
##      0.419739887455571                         0           0    0
##      0.425358901761228                         0           0    0
##      0.594035429893685                         0           0    0
##      0.671638488556335                         0           0    0
##      0.688092298985074                         0           0    0
##      0.806600378227794                         0           0    0
##      0.867455094638368                         0           0    0
##      0.897003448844096                         0           0    0
## 
## , , OTT_Time = 0.102777777777778, Snapchat_Time = 0.503124999997222, Instagram_Time = 0.156944444444444
## 
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.125 0.142361111111111 0.152777777777778
##      0.000000000123720820519974     0                 0                 0
##      0.0000000142143709248919       0                 0                 0
##      0.0000000203570784591136       0                 0                 0
##      0.0000000942663046181582       0                 0                 0
##      0.0381424863643358             0                 0                 0
##      0.0395235614826762             0                 0                 0
##      0.0398504564629362             0                 0                 0
##      0.0449831541922517             0                 0                 0
##      0.150208567676068              0                 0                 0
##      0.291704657263826              0                 0                 0
##      0.31263158525612               0                 0                 0
##      0.313581394222809              0                 0                 0
##      0.399450114450523              0                 0                 0
##      0.419739887455571              0                 0                 0
##      0.425358901761228              0                 0                 0
##      0.594035429893685              0                 0                 0
##      0.671638488556335              0                 0                 0
##      0.688092298985074              0                 0                 0
##      0.806600378227794              0                 0                 0
##      0.867455094638368              0                 0                 0
##      0.897003448844096              0                 0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.174305555555556 0.208333333333333
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.220833333333333 0.25 0.270833333333333
##      0.000000000123720820519974                 0    0                 0
##      0.0000000142143709248919                   0    0                 0
##      0.0000000203570784591136                   0    0                 0
##      0.0000000942663046181582                   0    0                 0
##      0.0381424863643358                         0    0                 0
##      0.0395235614826762                         0    0                 0
##      0.0398504564629362                         0    0                 0
##      0.0449831541922517                         0    0                 0
##      0.150208567676068                          0    0                 0
##      0.291704657263826                          0    0                 0
##      0.31263158525612                           0    0                 0
##      0.313581394222809                          0    0                 0
##      0.399450114450523                          0    0                 0
##      0.419739887455571                          0    0                 0
##      0.425358901761228                          0    0                 0
##      0.594035429893685                          0    0                 0
##      0.671638488556335                          0    0                 0
##      0.688092298985074                          0    0                 0
##      0.806600378227794                          0    0                 0
##      0.867455094638368                          0    0                 0
##      0.897003448844096                          0    0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.289583333333333 0.371527777777778
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.409722222222222 0.416666666666667 0.5 0.55625
##      0.000000000123720820519974                 0                 0   0       0
##      0.0000000142143709248919                   0                 0   0       0
##      0.0000000203570784591136                   0                 0   0       0
##      0.0000000942663046181582                   0                 0   0       0
##      0.0381424863643358                         0                 0   0       0
##      0.0395235614826762                         0                 0   0       0
##      0.0398504564629362                         0                 0   0       0
##      0.0449831541922517                         0                 0   0       0
##      0.150208567676068                          0                 0   0       0
##      0.291704657263826                          0                 0   0       0
##      0.31263158525612                           0                 0   0       0
##      0.313581394222809                          0                 0   0       0
##      0.399450114450523                          0                 0   0       0
##      0.419739887455571                          0                 0   0       0
##      0.425358901761228                          0                 0   0       0
##      0.594035429893685                          0                 0   0       0
##      0.671638488556335                          0                 0   0       0
##      0.688092298985074                          0                 0   0       0
##      0.806600378227794                          0                 0   0       0
##      0.867455094638368                          0                 0   0       0
##      0.897003448844096                          0                 0   0       0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.639583333333333 0.907785087701754 1
##      0.000000000123720820519974                 0                 0 0
##      0.0000000142143709248919                   0                 0 0
##      0.0000000203570784591136                   0                 0 0
##      0.0000000942663046181582                   0                 0 0
##      0.0381424863643358                         0                 0 0
##      0.0395235614826762                         0                 0 0
##      0.0398504564629362                         0                 0 0
##      0.0449831541922517                         0                 0 0
##      0.150208567676068                          0                 0 0
##      0.291704657263826                          0                 0 0
##      0.31263158525612                           0                 0 0
##      0.313581394222809                          0                 0 0
##      0.399450114450523                          0                 0 0
##      0.419739887455571                          0                 0 0
##      0.425358901761228                          0                 0 0
##      0.594035429893685                          0                 0 0
##      0.671638488556335                          0                 0 0
##      0.688092298985074                          0                 0 0
##      0.806600378227794                          0                 0 0
##      0.867455094638368                          0                 0 0
##      0.897003448844096                          0                 0 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 1.34930555555556 4.020833333 6.15
##      0.000000000123720820519974                0           0    0
##      0.0000000142143709248919                  0           0    0
##      0.0000000203570784591136                  0           0    0
##      0.0000000942663046181582                  0           0    0
##      0.0381424863643358                        0           0    0
##      0.0395235614826762                        0           0    0
##      0.0398504564629362                        0           0    0
##      0.0449831541922517                        0           0    0
##      0.150208567676068                         0           0    0
##      0.291704657263826                         0           0    0
##      0.31263158525612                          0           0    0
##      0.313581394222809                         0           0    0
##      0.399450114450523                         0           0    0
##      0.419739887455571                         0           0    0
##      0.425358901761228                         0           0    0
##      0.594035429893685                         0           0    0
##      0.671638488556335                         0           0    0
##      0.688092298985074                         0           0    0
##      0.806600378227794                         0           0    0
##      0.867455094638368                         0           0    0
##      0.897003448844096                         0           0    0
## 
## , , OTT_Time = 0.125, Snapchat_Time = 0.503124999997222, Instagram_Time = 0.156944444444444
## 
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.125 0.142361111111111 0.152777777777778
##      0.000000000123720820519974     0                 0                 0
##      0.0000000142143709248919       0                 0                 0
##      0.0000000203570784591136       0                 0                 0
##      0.0000000942663046181582       0                 0                 0
##      0.0381424863643358             0                 0                 0
##      0.0395235614826762             0                 0                 0
##      0.0398504564629362             0                 0                 0
##      0.0449831541922517             0                 0                 0
##      0.150208567676068              0                 0                 0
##      0.291704657263826              0                 0                 0
##      0.31263158525612               0                 0                 0
##      0.313581394222809              0                 0                 0
##      0.399450114450523              0                 0                 0
##      0.419739887455571              0                 0                 0
##      0.425358901761228              0                 0                 0
##      0.594035429893685              0                 0                 0
##      0.671638488556335              0                 0                 0
##      0.688092298985074              0                 0                 0
##      0.806600378227794              0                 0                 0
##      0.867455094638368              0                 0                 0
##      0.897003448844096              0                 0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.174305555555556 0.208333333333333
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.220833333333333 0.25 0.270833333333333
##      0.000000000123720820519974                 0    0                 0
##      0.0000000142143709248919                   0    0                 0
##      0.0000000203570784591136                   0    0                 0
##      0.0000000942663046181582                   0    0                 0
##      0.0381424863643358                         0    0                 0
##      0.0395235614826762                         0    0                 0
##      0.0398504564629362                         0    0                 0
##      0.0449831541922517                         0    0                 0
##      0.150208567676068                          0    0                 0
##      0.291704657263826                          0    0                 0
##      0.31263158525612                           0    0                 0
##      0.313581394222809                          0    0                 0
##      0.399450114450523                          0    0                 0
##      0.419739887455571                          0    0                 0
##      0.425358901761228                          0    0                 0
##      0.594035429893685                          0    0                 0
##      0.671638488556335                          0    0                 0
##      0.688092298985074                          0    0                 0
##      0.806600378227794                          0    0                 0
##      0.867455094638368                          0    0                 0
##      0.897003448844096                          0    0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.289583333333333 0.371527777777778
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.409722222222222 0.416666666666667 0.5 0.55625
##      0.000000000123720820519974                 0                 0   0       0
##      0.0000000142143709248919                   0                 0   0       0
##      0.0000000203570784591136                   0                 0   0       0
##      0.0000000942663046181582                   0                 0   0       0
##      0.0381424863643358                         0                 0   0       0
##      0.0395235614826762                         0                 0   0       0
##      0.0398504564629362                         0                 0   0       0
##      0.0449831541922517                         0                 0   0       0
##      0.150208567676068                          0                 0   0       0
##      0.291704657263826                          0                 0   0       0
##      0.31263158525612                           0                 0   0       0
##      0.313581394222809                          0                 0   0       0
##      0.399450114450523                          0                 0   0       0
##      0.419739887455571                          0                 0   0       0
##      0.425358901761228                          0                 0   0       0
##      0.594035429893685                          0                 0   0       0
##      0.671638488556335                          0                 0   0       0
##      0.688092298985074                          0                 0   0       0
##      0.806600378227794                          0                 0   0       0
##      0.867455094638368                          0                 0   0       0
##      0.897003448844096                          0                 0   0       0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.639583333333333 0.907785087701754 1
##      0.000000000123720820519974                 0                 0 0
##      0.0000000142143709248919                   0                 0 0
##      0.0000000203570784591136                   0                 0 0
##      0.0000000942663046181582                   0                 0 0
##      0.0381424863643358                         0                 0 0
##      0.0395235614826762                         0                 0 0
##      0.0398504564629362                         0                 0 0
##      0.0449831541922517                         0                 0 0
##      0.150208567676068                          0                 0 0
##      0.291704657263826                          0                 0 0
##      0.31263158525612                           0                 0 0
##      0.313581394222809                          0                 0 0
##      0.399450114450523                          0                 0 0
##      0.419739887455571                          0                 0 0
##      0.425358901761228                          0                 0 0
##      0.594035429893685                          0                 0 0
##      0.671638488556335                          0                 0 0
##      0.688092298985074                          0                 0 0
##      0.806600378227794                          0                 0 0
##      0.867455094638368                          0                 0 0
##      0.897003448844096                          0                 0 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 1.34930555555556 4.020833333 6.15
##      0.000000000123720820519974                0           0    0
##      0.0000000142143709248919                  0           0    0
##      0.0000000203570784591136                  0           0    0
##      0.0000000942663046181582                  0           0    0
##      0.0381424863643358                        0           0    0
##      0.0395235614826762                        0           0    0
##      0.0398504564629362                        0           0    0
##      0.0449831541922517                        0           0    0
##      0.150208567676068                         0           0    0
##      0.291704657263826                         0           0    0
##      0.31263158525612                          0           0    0
##      0.313581394222809                         0           0    0
##      0.399450114450523                         0           0    0
##      0.419739887455571                         0           0    0
##      0.425358901761228                         0           0    0
##      0.594035429893685                         0           0    0
##      0.671638488556335                         0           0    0
##      0.688092298985074                         0           0    0
##      0.806600378227794                         0           0    0
##      0.867455094638368                         0           0    0
##      0.897003448844096                         0           0    0
## 
## , , OTT_Time = 0.416666666666667, Snapchat_Time = 0.503124999997222, Instagram_Time = 0.156944444444444
## 
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.125 0.142361111111111 0.152777777777778
##      0.000000000123720820519974     0                 0                 0
##      0.0000000142143709248919       0                 0                 0
##      0.0000000203570784591136       0                 0                 0
##      0.0000000942663046181582       0                 0                 0
##      0.0381424863643358             0                 0                 0
##      0.0395235614826762             0                 0                 0
##      0.0398504564629362             0                 0                 0
##      0.0449831541922517             0                 0                 0
##      0.150208567676068              0                 0                 0
##      0.291704657263826              0                 0                 0
##      0.31263158525612               0                 0                 0
##      0.313581394222809              0                 0                 0
##      0.399450114450523              0                 0                 0
##      0.419739887455571              0                 0                 0
##      0.425358901761228              0                 0                 0
##      0.594035429893685              0                 0                 0
##      0.671638488556335              0                 0                 0
##      0.688092298985074              0                 0                 0
##      0.806600378227794              0                 0                 0
##      0.867455094638368              0                 0                 0
##      0.897003448844096              0                 0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.174305555555556 0.208333333333333
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.220833333333333 0.25 0.270833333333333
##      0.000000000123720820519974                 0    0                 0
##      0.0000000142143709248919                   0    0                 0
##      0.0000000203570784591136                   0    0                 0
##      0.0000000942663046181582                   0    0                 0
##      0.0381424863643358                         0    0                 0
##      0.0395235614826762                         0    0                 0
##      0.0398504564629362                         0    0                 0
##      0.0449831541922517                         0    0                 0
##      0.150208567676068                          0    0                 0
##      0.291704657263826                          0    0                 0
##      0.31263158525612                           0    0                 0
##      0.313581394222809                          0    0                 0
##      0.399450114450523                          0    0                 0
##      0.419739887455571                          0    0                 0
##      0.425358901761228                          0    0                 0
##      0.594035429893685                          0    0                 0
##      0.671638488556335                          0    0                 0
##      0.688092298985074                          0    0                 0
##      0.806600378227794                          0    0                 0
##      0.867455094638368                          0    0                 0
##      0.897003448844096                          0    0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.289583333333333 0.371527777777778
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.409722222222222 0.416666666666667 0.5 0.55625
##      0.000000000123720820519974                 0                 0   0       0
##      0.0000000142143709248919                   0                 0   0       0
##      0.0000000203570784591136                   0                 0   0       0
##      0.0000000942663046181582                   0                 0   0       0
##      0.0381424863643358                         0                 0   0       0
##      0.0395235614826762                         0                 0   0       0
##      0.0398504564629362                         0                 0   0       0
##      0.0449831541922517                         0                 0   0       0
##      0.150208567676068                          0                 0   0       0
##      0.291704657263826                          0                 0   0       0
##      0.31263158525612                           0                 0   0       0
##      0.313581394222809                          0                 0   0       0
##      0.399450114450523                          0                 0   0       0
##      0.419739887455571                          0                 0   0       0
##      0.425358901761228                          0                 0   0       0
##      0.594035429893685                          0                 0   0       0
##      0.671638488556335                          0                 0   0       0
##      0.688092298985074                          0                 0   0       0
##      0.806600378227794                          0                 0   0       0
##      0.867455094638368                          0                 0   0       0
##      0.897003448844096                          0                 0   0       0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.639583333333333 0.907785087701754 1
##      0.000000000123720820519974                 0                 0 0
##      0.0000000142143709248919                   0                 0 0
##      0.0000000203570784591136                   0                 0 0
##      0.0000000942663046181582                   0                 0 0
##      0.0381424863643358                         0                 0 0
##      0.0395235614826762                         0                 0 0
##      0.0398504564629362                         0                 0 0
##      0.0449831541922517                         0                 0 0
##      0.150208567676068                          0                 0 0
##      0.291704657263826                          0                 0 0
##      0.31263158525612                           0                 0 0
##      0.313581394222809                          0                 0 0
##      0.399450114450523                          0                 0 0
##      0.419739887455571                          0                 0 0
##      0.425358901761228                          0                 0 0
##      0.594035429893685                          0                 0 0
##      0.671638488556335                          0                 0 0
##      0.688092298985074                          0                 0 0
##      0.806600378227794                          0                 0 0
##      0.867455094638368                          0                 0 0
##      0.897003448844096                          0                 0 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 1.34930555555556 4.020833333 6.15
##      0.000000000123720820519974                0           0    0
##      0.0000000142143709248919                  0           0    0
##      0.0000000203570784591136                  0           0    0
##      0.0000000942663046181582                  0           0    0
##      0.0381424863643358                        0           0    0
##      0.0395235614826762                        0           0    0
##      0.0398504564629362                        0           0    0
##      0.0449831541922517                        0           0    0
##      0.150208567676068                         0           0    0
##      0.291704657263826                         0           0    0
##      0.31263158525612                          0           0    0
##      0.313581394222809                         0           0    0
##      0.399450114450523                         0           0    0
##      0.419739887455571                         0           0    0
##      0.425358901761228                         0           0    0
##      0.594035429893685                         0           0    0
##      0.671638488556335                         0           0    0
##      0.688092298985074                         0           0    0
##      0.806600378227794                         0           0    0
##      0.867455094638368                         0           0    0
##      0.897003448844096                         0           0    0
## 
## , , OTT_Time = 0.5104166667, Snapchat_Time = 0.503124999997222, Instagram_Time = 0.156944444444444
## 
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.125 0.142361111111111 0.152777777777778
##      0.000000000123720820519974     0                 0                 0
##      0.0000000142143709248919       0                 0                 0
##      0.0000000203570784591136       0                 0                 0
##      0.0000000942663046181582       0                 0                 0
##      0.0381424863643358             0                 0                 0
##      0.0395235614826762             0                 0                 0
##      0.0398504564629362             0                 0                 0
##      0.0449831541922517             0                 0                 0
##      0.150208567676068              0                 0                 0
##      0.291704657263826              0                 0                 0
##      0.31263158525612               0                 0                 0
##      0.313581394222809              0                 0                 0
##      0.399450114450523              0                 0                 0
##      0.419739887455571              0                 0                 0
##      0.425358901761228              0                 0                 0
##      0.594035429893685              0                 0                 0
##      0.671638488556335              0                 0                 0
##      0.688092298985074              0                 0                 0
##      0.806600378227794              0                 0                 0
##      0.867455094638368              0                 0                 0
##      0.897003448844096              0                 0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.174305555555556 0.208333333333333
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.220833333333333 0.25 0.270833333333333
##      0.000000000123720820519974                 0    0                 0
##      0.0000000142143709248919                   0    0                 0
##      0.0000000203570784591136                   0    0                 0
##      0.0000000942663046181582                   0    0                 0
##      0.0381424863643358                         0    0                 0
##      0.0395235614826762                         0    0                 0
##      0.0398504564629362                         0    0                 0
##      0.0449831541922517                         0    0                 0
##      0.150208567676068                          0    0                 0
##      0.291704657263826                          0    0                 0
##      0.31263158525612                           0    0                 0
##      0.313581394222809                          0    0                 0
##      0.399450114450523                          0    0                 0
##      0.419739887455571                          0    0                 0
##      0.425358901761228                          0    0                 0
##      0.594035429893685                          0    0                 0
##      0.671638488556335                          0    0                 0
##      0.688092298985074                          0    0                 0
##      0.806600378227794                          0    0                 0
##      0.867455094638368                          0    0                 0
##      0.897003448844096                          0    0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.289583333333333 0.371527777777778
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.409722222222222 0.416666666666667 0.5 0.55625
##      0.000000000123720820519974                 0                 0   0       0
##      0.0000000142143709248919                   0                 0   0       0
##      0.0000000203570784591136                   0                 0   0       0
##      0.0000000942663046181582                   0                 0   0       0
##      0.0381424863643358                         0                 0   0       0
##      0.0395235614826762                         0                 0   0       0
##      0.0398504564629362                         0                 0   0       0
##      0.0449831541922517                         0                 0   0       0
##      0.150208567676068                          0                 0   0       0
##      0.291704657263826                          0                 0   0       0
##      0.31263158525612                           0                 0   0       0
##      0.313581394222809                          0                 0   0       0
##      0.399450114450523                          0                 0   0       0
##      0.419739887455571                          0                 0   0       0
##      0.425358901761228                          0                 0   0       0
##      0.594035429893685                          0                 0   0       0
##      0.671638488556335                          0                 0   0       0
##      0.688092298985074                          0                 0   0       0
##      0.806600378227794                          0                 0   0       0
##      0.867455094638368                          0                 0   0       0
##      0.897003448844096                          0                 0   0       0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.639583333333333 0.907785087701754 1
##      0.000000000123720820519974                 0                 0 0
##      0.0000000142143709248919                   0                 0 0
##      0.0000000203570784591136                   0                 0 0
##      0.0000000942663046181582                   0                 0 0
##      0.0381424863643358                         0                 0 0
##      0.0395235614826762                         0                 0 0
##      0.0398504564629362                         0                 0 0
##      0.0449831541922517                         0                 0 0
##      0.150208567676068                          0                 0 0
##      0.291704657263826                          0                 0 0
##      0.31263158525612                           0                 0 0
##      0.313581394222809                          0                 0 0
##      0.399450114450523                          0                 0 0
##      0.419739887455571                          0                 0 0
##      0.425358901761228                          0                 0 0
##      0.594035429893685                          0                 0 0
##      0.671638488556335                          0                 0 0
##      0.688092298985074                          0                 0 0
##      0.806600378227794                          0                 0 0
##      0.867455094638368                          0                 0 0
##      0.897003448844096                          0                 0 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 1.34930555555556 4.020833333 6.15
##      0.000000000123720820519974                0           0    0
##      0.0000000142143709248919                  0           0    0
##      0.0000000203570784591136                  0           0    0
##      0.0000000942663046181582                  0           0    0
##      0.0381424863643358                        0           0    0
##      0.0395235614826762                        0           0    0
##      0.0398504564629362                        0           0    0
##      0.0449831541922517                        0           0    0
##      0.150208567676068                         0           0    0
##      0.291704657263826                         0           0    0
##      0.31263158525612                          0           0    0
##      0.313581394222809                         0           0    0
##      0.399450114450523                         0           0    0
##      0.419739887455571                         0           0    0
##      0.425358901761228                         0           0    0
##      0.594035429893685                         0           0    0
##      0.671638488556335                         0           0    0
##      0.688092298985074                         0           0    0
##      0.806600378227794                         0           0    0
##      0.867455094638368                         0           0    0
##      0.897003448844096                         0           0    0
## 
## , , OTT_Time = 1.44460470085726, Snapchat_Time = 0.503124999997222, Instagram_Time = 0.156944444444444
## 
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.125 0.142361111111111 0.152777777777778
##      0.000000000123720820519974     0                 0                 0
##      0.0000000142143709248919       0                 0                 0
##      0.0000000203570784591136       0                 0                 0
##      0.0000000942663046181582       0                 0                 0
##      0.0381424863643358             0                 0                 0
##      0.0395235614826762             0                 0                 0
##      0.0398504564629362             0                 0                 0
##      0.0449831541922517             0                 0                 0
##      0.150208567676068              0                 0                 0
##      0.291704657263826              0                 0                 0
##      0.31263158525612               0                 0                 0
##      0.313581394222809              0                 0                 0
##      0.399450114450523              0                 0                 0
##      0.419739887455571              0                 0                 0
##      0.425358901761228              0                 0                 0
##      0.594035429893685              0                 0                 0
##      0.671638488556335              0                 0                 0
##      0.688092298985074              0                 0                 0
##      0.806600378227794              0                 0                 0
##      0.867455094638368              0                 0                 0
##      0.897003448844096              0                 0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.174305555555556 0.208333333333333
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.220833333333333 0.25 0.270833333333333
##      0.000000000123720820519974                 0    0                 0
##      0.0000000142143709248919                   0    0                 0
##      0.0000000203570784591136                   0    0                 0
##      0.0000000942663046181582                   0    0                 0
##      0.0381424863643358                         0    0                 0
##      0.0395235614826762                         0    0                 0
##      0.0398504564629362                         0    0                 0
##      0.0449831541922517                         0    0                 0
##      0.150208567676068                          0    0                 0
##      0.291704657263826                          0    0                 0
##      0.31263158525612                           0    0                 0
##      0.313581394222809                          0    0                 0
##      0.399450114450523                          0    0                 0
##      0.419739887455571                          0    0                 0
##      0.425358901761228                          0    0                 0
##      0.594035429893685                          0    0                 0
##      0.671638488556335                          0    0                 0
##      0.688092298985074                          0    0                 0
##      0.806600378227794                          0    0                 0
##      0.867455094638368                          0    0                 0
##      0.897003448844096                          0    0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.289583333333333 0.371527777777778
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.409722222222222 0.416666666666667 0.5 0.55625
##      0.000000000123720820519974                 0                 0   0       0
##      0.0000000142143709248919                   0                 0   0       0
##      0.0000000203570784591136                   0                 0   0       0
##      0.0000000942663046181582                   0                 0   0       0
##      0.0381424863643358                         0                 0   0       0
##      0.0395235614826762                         0                 0   0       0
##      0.0398504564629362                         0                 0   0       0
##      0.0449831541922517                         1                 0   0       0
##      0.150208567676068                          0                 0   0       0
##      0.291704657263826                          0                 0   0       0
##      0.31263158525612                           0                 0   0       0
##      0.313581394222809                          0                 0   0       0
##      0.399450114450523                          0                 0   0       0
##      0.419739887455571                          0                 0   0       0
##      0.425358901761228                          0                 0   0       0
##      0.594035429893685                          0                 0   0       0
##      0.671638488556335                          0                 0   0       0
##      0.688092298985074                          0                 0   0       0
##      0.806600378227794                          0                 0   0       0
##      0.867455094638368                          0                 0   0       0
##      0.897003448844096                          0                 0   0       0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.639583333333333 0.907785087701754 1
##      0.000000000123720820519974                 0                 0 0
##      0.0000000142143709248919                   0                 0 0
##      0.0000000203570784591136                   0                 0 0
##      0.0000000942663046181582                   0                 0 0
##      0.0381424863643358                         0                 0 0
##      0.0395235614826762                         0                 0 0
##      0.0398504564629362                         0                 0 0
##      0.0449831541922517                         0                 0 0
##      0.150208567676068                          0                 0 0
##      0.291704657263826                          0                 0 0
##      0.31263158525612                           0                 0 0
##      0.313581394222809                          0                 0 0
##      0.399450114450523                          0                 0 0
##      0.419739887455571                          0                 0 0
##      0.425358901761228                          0                 0 0
##      0.594035429893685                          0                 0 0
##      0.671638488556335                          0                 0 0
##      0.688092298985074                          0                 0 0
##      0.806600378227794                          0                 0 0
##      0.867455094638368                          0                 0 0
##      0.897003448844096                          0                 0 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 1.34930555555556 4.020833333 6.15
##      0.000000000123720820519974                0           0    0
##      0.0000000142143709248919                  0           0    0
##      0.0000000203570784591136                  0           0    0
##      0.0000000942663046181582                  0           0    0
##      0.0381424863643358                        0           0    0
##      0.0395235614826762                        0           0    0
##      0.0398504564629362                        0           0    0
##      0.0449831541922517                        0           0    0
##      0.150208567676068                         0           0    0
##      0.291704657263826                         0           0    0
##      0.31263158525612                          0           0    0
##      0.313581394222809                         0           0    0
##      0.399450114450523                         0           0    0
##      0.419739887455571                         0           0    0
##      0.425358901761228                         0           0    0
##      0.594035429893685                         0           0    0
##      0.671638488556335                         0           0    0
##      0.688092298985074                         0           0    0
##      0.806600378227794                         0           0    0
##      0.867455094638368                         0           0    0
##      0.897003448844096                         0           0    0
## 
## , , OTT_Time = 3, Snapchat_Time = 0.503124999997222, Instagram_Time = 0.156944444444444
## 
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.125 0.142361111111111 0.152777777777778
##      0.000000000123720820519974     0                 0                 0
##      0.0000000142143709248919       0                 0                 0
##      0.0000000203570784591136       0                 0                 0
##      0.0000000942663046181582       0                 0                 0
##      0.0381424863643358             0                 0                 0
##      0.0395235614826762             0                 0                 0
##      0.0398504564629362             0                 0                 0
##      0.0449831541922517             0                 0                 0
##      0.150208567676068              0                 0                 0
##      0.291704657263826              0                 0                 0
##      0.31263158525612               0                 0                 0
##      0.313581394222809              0                 0                 0
##      0.399450114450523              0                 0                 0
##      0.419739887455571              0                 0                 0
##      0.425358901761228              0                 0                 0
##      0.594035429893685              0                 0                 0
##      0.671638488556335              0                 0                 0
##      0.688092298985074              0                 0                 0
##      0.806600378227794              0                 0                 0
##      0.867455094638368              0                 0                 0
##      0.897003448844096              0                 0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.174305555555556 0.208333333333333
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.220833333333333 0.25 0.270833333333333
##      0.000000000123720820519974                 0    0                 0
##      0.0000000142143709248919                   0    0                 0
##      0.0000000203570784591136                   0    0                 0
##      0.0000000942663046181582                   0    0                 0
##      0.0381424863643358                         0    0                 0
##      0.0395235614826762                         0    0                 0
##      0.0398504564629362                         0    0                 0
##      0.0449831541922517                         0    0                 0
##      0.150208567676068                          0    0                 0
##      0.291704657263826                          0    0                 0
##      0.31263158525612                           0    0                 0
##      0.313581394222809                          0    0                 0
##      0.399450114450523                          0    0                 0
##      0.419739887455571                          0    0                 0
##      0.425358901761228                          0    0                 0
##      0.594035429893685                          0    0                 0
##      0.671638488556335                          0    0                 0
##      0.688092298985074                          0    0                 0
##      0.806600378227794                          0    0                 0
##      0.867455094638368                          0    0                 0
##      0.897003448844096                          0    0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.289583333333333 0.371527777777778
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.409722222222222 0.416666666666667 0.5 0.55625
##      0.000000000123720820519974                 0                 0   0       0
##      0.0000000142143709248919                   0                 0   0       0
##      0.0000000203570784591136                   0                 0   0       0
##      0.0000000942663046181582                   0                 0   0       0
##      0.0381424863643358                         0                 0   0       0
##      0.0395235614826762                         0                 0   0       0
##      0.0398504564629362                         0                 0   0       0
##      0.0449831541922517                         0                 0   0       0
##      0.150208567676068                          0                 0   0       0
##      0.291704657263826                          0                 0   0       0
##      0.31263158525612                           0                 0   0       0
##      0.313581394222809                          0                 0   0       0
##      0.399450114450523                          0                 0   0       0
##      0.419739887455571                          0                 0   0       0
##      0.425358901761228                          0                 0   0       0
##      0.594035429893685                          0                 0   0       0
##      0.671638488556335                          0                 0   0       0
##      0.688092298985074                          0                 0   0       0
##      0.806600378227794                          0                 0   0       0
##      0.867455094638368                          0                 0   0       0
##      0.897003448844096                          0                 0   0       0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.639583333333333 0.907785087701754 1
##      0.000000000123720820519974                 0                 0 0
##      0.0000000142143709248919                   0                 0 0
##      0.0000000203570784591136                   0                 0 0
##      0.0000000942663046181582                   0                 0 0
##      0.0381424863643358                         0                 0 0
##      0.0395235614826762                         0                 0 0
##      0.0398504564629362                         0                 0 0
##      0.0449831541922517                         0                 0 0
##      0.150208567676068                          0                 0 0
##      0.291704657263826                          0                 0 0
##      0.31263158525612                           0                 0 0
##      0.313581394222809                          0                 0 0
##      0.399450114450523                          0                 0 0
##      0.419739887455571                          0                 0 0
##      0.425358901761228                          0                 0 0
##      0.594035429893685                          0                 0 0
##      0.671638488556335                          0                 0 0
##      0.688092298985074                          0                 0 0
##      0.806600378227794                          0                 0 0
##      0.867455094638368                          0                 0 0
##      0.897003448844096                          0                 0 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 1.34930555555556 4.020833333 6.15
##      0.000000000123720820519974                0           0    0
##      0.0000000142143709248919                  0           0    0
##      0.0000000203570784591136                  0           0    0
##      0.0000000942663046181582                  0           0    0
##      0.0381424863643358                        0           0    0
##      0.0395235614826762                        0           0    0
##      0.0398504564629362                        0           0    0
##      0.0449831541922517                        0           0    0
##      0.150208567676068                         0           0    0
##      0.291704657263826                         0           0    0
##      0.31263158525612                          0           0    0
##      0.313581394222809                         0           0    0
##      0.399450114450523                         0           0    0
##      0.419739887455571                         0           0    0
##      0.425358901761228                         0           0    0
##      0.594035429893685                         0           0    0
##      0.671638488556335                         0           0    0
##      0.688092298985074                         0           0    0
##      0.806600378227794                         0           0    0
##      0.867455094638368                         0           0    0
##      0.897003448844096                         0           0    0
## 
## , , OTT_Time = 14.5, Snapchat_Time = 0.503124999997222, Instagram_Time = 0.156944444444444
## 
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.125 0.142361111111111 0.152777777777778
##      0.000000000123720820519974     0                 0                 0
##      0.0000000142143709248919       0                 0                 0
##      0.0000000203570784591136       0                 0                 0
##      0.0000000942663046181582       0                 0                 0
##      0.0381424863643358             0                 0                 0
##      0.0395235614826762             0                 0                 0
##      0.0398504564629362             0                 0                 0
##      0.0449831541922517             0                 0                 0
##      0.150208567676068              0                 0                 0
##      0.291704657263826              0                 0                 0
##      0.31263158525612               0                 0                 0
##      0.313581394222809              0                 0                 0
##      0.399450114450523              0                 0                 0
##      0.419739887455571              0                 0                 0
##      0.425358901761228              0                 0                 0
##      0.594035429893685              0                 0                 0
##      0.671638488556335              0                 0                 0
##      0.688092298985074              0                 0                 0
##      0.806600378227794              0                 0                 0
##      0.867455094638368              0                 0                 0
##      0.897003448844096              0                 0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.174305555555556 0.208333333333333
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.220833333333333 0.25 0.270833333333333
##      0.000000000123720820519974                 0    0                 0
##      0.0000000142143709248919                   0    0                 0
##      0.0000000203570784591136                   0    0                 0
##      0.0000000942663046181582                   0    0                 0
##      0.0381424863643358                         0    0                 0
##      0.0395235614826762                         0    0                 0
##      0.0398504564629362                         0    0                 0
##      0.0449831541922517                         0    0                 0
##      0.150208567676068                          0    0                 0
##      0.291704657263826                          0    0                 0
##      0.31263158525612                           0    0                 0
##      0.313581394222809                          0    0                 0
##      0.399450114450523                          0    0                 0
##      0.419739887455571                          0    0                 0
##      0.425358901761228                          0    0                 0
##      0.594035429893685                          0    0                 0
##      0.671638488556335                          0    0                 0
##      0.688092298985074                          0    0                 0
##      0.806600378227794                          0    0                 0
##      0.867455094638368                          0    0                 0
##      0.897003448844096                          0    0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.289583333333333 0.371527777777778
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.409722222222222 0.416666666666667 0.5 0.55625
##      0.000000000123720820519974                 0                 0   0       0
##      0.0000000142143709248919                   0                 0   0       0
##      0.0000000203570784591136                   0                 0   0       0
##      0.0000000942663046181582                   0                 0   0       0
##      0.0381424863643358                         0                 0   0       0
##      0.0395235614826762                         0                 0   0       0
##      0.0398504564629362                         0                 0   0       0
##      0.0449831541922517                         0                 0   0       0
##      0.150208567676068                          0                 0   0       0
##      0.291704657263826                          0                 0   0       0
##      0.31263158525612                           0                 0   0       0
##      0.313581394222809                          0                 0   0       0
##      0.399450114450523                          0                 0   0       0
##      0.419739887455571                          0                 0   0       0
##      0.425358901761228                          0                 0   0       0
##      0.594035429893685                          0                 0   0       0
##      0.671638488556335                          0                 0   0       0
##      0.688092298985074                          0                 0   0       0
##      0.806600378227794                          0                 0   0       0
##      0.867455094638368                          0                 0   0       0
##      0.897003448844096                          0                 0   0       0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.639583333333333 0.907785087701754 1
##      0.000000000123720820519974                 0                 0 0
##      0.0000000142143709248919                   0                 0 0
##      0.0000000203570784591136                   0                 0 0
##      0.0000000942663046181582                   0                 0 0
##      0.0381424863643358                         0                 0 0
##      0.0395235614826762                         0                 0 0
##      0.0398504564629362                         0                 0 0
##      0.0449831541922517                         0                 0 0
##      0.150208567676068                          0                 0 0
##      0.291704657263826                          0                 0 0
##      0.31263158525612                           0                 0 0
##      0.313581394222809                          0                 0 0
##      0.399450114450523                          0                 0 0
##      0.419739887455571                          0                 0 0
##      0.425358901761228                          0                 0 0
##      0.594035429893685                          0                 0 0
##      0.671638488556335                          0                 0 0
##      0.688092298985074                          0                 0 0
##      0.806600378227794                          0                 0 0
##      0.867455094638368                          0                 0 0
##      0.897003448844096                          0                 0 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 1.34930555555556 4.020833333 6.15
##      0.000000000123720820519974                0           0    0
##      0.0000000142143709248919                  0           0    0
##      0.0000000203570784591136                  0           0    0
##      0.0000000942663046181582                  0           0    0
##      0.0381424863643358                        0           0    0
##      0.0395235614826762                        0           0    0
##      0.0398504564629362                        0           0    0
##      0.0449831541922517                        0           0    0
##      0.150208567676068                         0           0    0
##      0.291704657263826                         0           0    0
##      0.31263158525612                          0           0    0
##      0.313581394222809                         0           0    0
##      0.399450114450523                         0           0    0
##      0.419739887455571                         0           0    0
##      0.425358901761228                         0           0    0
##      0.594035429893685                         0           0    0
##      0.671638488556335                         0           0    0
##      0.688092298985074                         0           0    0
##      0.806600378227794                         0           0    0
##      0.867455094638368                         0           0    0
##      0.897003448844096                         0           0    0
## 
## , , OTT_Time = 0, Snapchat_Time = 0.6208333333, Instagram_Time = 0.156944444444444
## 
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.125 0.142361111111111 0.152777777777778
##      0.000000000123720820519974     0                 0                 0
##      0.0000000142143709248919       0                 0                 0
##      0.0000000203570784591136       0                 0                 0
##      0.0000000942663046181582       0                 0                 0
##      0.0381424863643358             0                 0                 0
##      0.0395235614826762             0                 0                 0
##      0.0398504564629362             0                 0                 0
##      0.0449831541922517             0                 0                 0
##      0.150208567676068              0                 0                 0
##      0.291704657263826              0                 0                 0
##      0.31263158525612               0                 0                 0
##      0.313581394222809              0                 0                 0
##      0.399450114450523              0                 0                 0
##      0.419739887455571              0                 0                 0
##      0.425358901761228              0                 0                 0
##      0.594035429893685              0                 0                 0
##      0.671638488556335              0                 0                 0
##      0.688092298985074              0                 0                 0
##      0.806600378227794              0                 0                 0
##      0.867455094638368              0                 0                 0
##      0.897003448844096              0                 0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.174305555555556 0.208333333333333
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.220833333333333 0.25 0.270833333333333
##      0.000000000123720820519974                 0    0                 0
##      0.0000000142143709248919                   0    0                 0
##      0.0000000203570784591136                   0    0                 0
##      0.0000000942663046181582                   0    0                 0
##      0.0381424863643358                         0    0                 0
##      0.0395235614826762                         0    0                 0
##      0.0398504564629362                         0    0                 0
##      0.0449831541922517                         0    0                 0
##      0.150208567676068                          0    0                 0
##      0.291704657263826                          0    0                 0
##      0.31263158525612                           0    0                 0
##      0.313581394222809                          0    0                 0
##      0.399450114450523                          0    0                 0
##      0.419739887455571                          0    0                 0
##      0.425358901761228                          0    0                 0
##      0.594035429893685                          0    0                 0
##      0.671638488556335                          0    0                 0
##      0.688092298985074                          0    0                 0
##      0.806600378227794                          0    0                 0
##      0.867455094638368                          0    0                 0
##      0.897003448844096                          0    0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.289583333333333 0.371527777777778
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.409722222222222 0.416666666666667 0.5 0.55625
##      0.000000000123720820519974                 0                 0   0       0
##      0.0000000142143709248919                   0                 0   0       0
##      0.0000000203570784591136                   0                 0   0       0
##      0.0000000942663046181582                   0                 0   0       0
##      0.0381424863643358                         0                 0   0       0
##      0.0395235614826762                         0                 0   0       0
##      0.0398504564629362                         0                 0   0       0
##      0.0449831541922517                         0                 0   0       0
##      0.150208567676068                          0                 0   0       0
##      0.291704657263826                          0                 0   0       0
##      0.31263158525612                           0                 0   0       0
##      0.313581394222809                          0                 0   0       0
##      0.399450114450523                          0                 0   0       0
##      0.419739887455571                          0                 0   0       0
##      0.425358901761228                          0                 0   0       0
##      0.594035429893685                          0                 0   0       0
##      0.671638488556335                          0                 0   0       0
##      0.688092298985074                          0                 0   0       0
##      0.806600378227794                          0                 0   0       0
##      0.867455094638368                          0                 0   0       0
##      0.897003448844096                          0                 0   0       0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.639583333333333 0.907785087701754 1
##      0.000000000123720820519974                 0                 0 0
##      0.0000000142143709248919                   0                 0 0
##      0.0000000203570784591136                   0                 0 0
##      0.0000000942663046181582                   0                 0 0
##      0.0381424863643358                         0                 0 0
##      0.0395235614826762                         0                 0 0
##      0.0398504564629362                         0                 0 0
##      0.0449831541922517                         0                 0 0
##      0.150208567676068                          0                 0 0
##      0.291704657263826                          0                 0 0
##      0.31263158525612                           0                 0 0
##      0.313581394222809                          0                 0 0
##      0.399450114450523                          0                 0 0
##      0.419739887455571                          0                 0 0
##      0.425358901761228                          0                 0 0
##      0.594035429893685                          0                 0 0
##      0.671638488556335                          0                 0 0
##      0.688092298985074                          0                 0 0
##      0.806600378227794                          0                 0 0
##      0.867455094638368                          0                 0 0
##      0.897003448844096                          0                 0 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 1.34930555555556 4.020833333 6.15
##      0.000000000123720820519974                0           0    0
##      0.0000000142143709248919                  0           0    0
##      0.0000000203570784591136                  0           0    0
##      0.0000000942663046181582                  0           0    0
##      0.0381424863643358                        0           0    0
##      0.0395235614826762                        0           0    0
##      0.0398504564629362                        0           0    0
##      0.0449831541922517                        0           0    0
##      0.150208567676068                         0           0    0
##      0.291704657263826                         0           0    0
##      0.31263158525612                          0           0    0
##      0.313581394222809                         0           0    0
##      0.399450114450523                         0           0    0
##      0.419739887455571                         0           0    0
##      0.425358901761228                         0           0    0
##      0.594035429893685                         0           0    0
##      0.671638488556335                         0           0    0
##      0.688092298985074                         0           0    0
##      0.806600378227794                         0           0    0
##      0.867455094638368                         0           0    0
##      0.897003448844096                         0           0    0
## 
## , , OTT_Time = 0.102777777777778, Snapchat_Time = 0.6208333333, Instagram_Time = 0.156944444444444
## 
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.125 0.142361111111111 0.152777777777778
##      0.000000000123720820519974     0                 0                 0
##      0.0000000142143709248919       0                 0                 0
##      0.0000000203570784591136       0                 0                 0
##      0.0000000942663046181582       0                 0                 0
##      0.0381424863643358             0                 0                 0
##      0.0395235614826762             0                 0                 0
##      0.0398504564629362             0                 0                 0
##      0.0449831541922517             0                 0                 0
##      0.150208567676068              0                 0                 0
##      0.291704657263826              0                 0                 0
##      0.31263158525612               0                 0                 0
##      0.313581394222809              0                 0                 0
##      0.399450114450523              0                 0                 0
##      0.419739887455571              0                 0                 0
##      0.425358901761228              0                 0                 0
##      0.594035429893685              0                 0                 0
##      0.671638488556335              0                 0                 0
##      0.688092298985074              0                 0                 0
##      0.806600378227794              0                 0                 0
##      0.867455094638368              0                 0                 0
##      0.897003448844096              0                 0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.174305555555556 0.208333333333333
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.220833333333333 0.25 0.270833333333333
##      0.000000000123720820519974                 0    0                 0
##      0.0000000142143709248919                   0    0                 0
##      0.0000000203570784591136                   0    0                 0
##      0.0000000942663046181582                   0    0                 0
##      0.0381424863643358                         0    0                 0
##      0.0395235614826762                         0    0                 0
##      0.0398504564629362                         0    0                 0
##      0.0449831541922517                         0    0                 0
##      0.150208567676068                          0    0                 0
##      0.291704657263826                          0    0                 0
##      0.31263158525612                           0    0                 0
##      0.313581394222809                          0    0                 0
##      0.399450114450523                          0    0                 0
##      0.419739887455571                          0    0                 0
##      0.425358901761228                          0    0                 0
##      0.594035429893685                          0    0                 0
##      0.671638488556335                          0    0                 0
##      0.688092298985074                          0    0                 0
##      0.806600378227794                          0    0                 0
##      0.867455094638368                          0    0                 0
##      0.897003448844096                          0    0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.289583333333333 0.371527777777778
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.409722222222222 0.416666666666667 0.5 0.55625
##      0.000000000123720820519974                 0                 0   0       0
##      0.0000000142143709248919                   0                 0   0       0
##      0.0000000203570784591136                   0                 0   0       0
##      0.0000000942663046181582                   0                 0   0       0
##      0.0381424863643358                         0                 0   0       0
##      0.0395235614826762                         0                 0   0       0
##      0.0398504564629362                         0                 0   0       0
##      0.0449831541922517                         0                 0   0       0
##      0.150208567676068                          0                 0   0       0
##      0.291704657263826                          0                 0   0       0
##      0.31263158525612                           0                 0   0       0
##      0.313581394222809                          0                 0   0       0
##      0.399450114450523                          0                 0   0       0
##      0.419739887455571                          0                 0   0       0
##      0.425358901761228                          0                 0   0       0
##      0.594035429893685                          0                 0   0       0
##      0.671638488556335                          0                 0   0       0
##      0.688092298985074                          0                 0   0       0
##      0.806600378227794                          0                 0   0       0
##      0.867455094638368                          0                 0   0       0
##      0.897003448844096                          0                 0   0       0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.639583333333333 0.907785087701754 1
##      0.000000000123720820519974                 0                 0 0
##      0.0000000142143709248919                   0                 0 0
##      0.0000000203570784591136                   0                 0 0
##      0.0000000942663046181582                   0                 0 0
##      0.0381424863643358                         0                 0 0
##      0.0395235614826762                         0                 0 0
##      0.0398504564629362                         0                 0 0
##      0.0449831541922517                         0                 0 0
##      0.150208567676068                          0                 0 0
##      0.291704657263826                          0                 0 0
##      0.31263158525612                           0                 0 0
##      0.313581394222809                          0                 0 0
##      0.399450114450523                          0                 0 0
##      0.419739887455571                          0                 0 0
##      0.425358901761228                          0                 0 0
##      0.594035429893685                          0                 0 0
##      0.671638488556335                          0                 0 0
##      0.688092298985074                          0                 0 0
##      0.806600378227794                          0                 0 0
##      0.867455094638368                          0                 0 0
##      0.897003448844096                          0                 0 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 1.34930555555556 4.020833333 6.15
##      0.000000000123720820519974                0           0    0
##      0.0000000142143709248919                  0           0    0
##      0.0000000203570784591136                  0           0    0
##      0.0000000942663046181582                  0           0    0
##      0.0381424863643358                        0           0    0
##      0.0395235614826762                        0           0    0
##      0.0398504564629362                        0           0    0
##      0.0449831541922517                        0           0    0
##      0.150208567676068                         0           0    0
##      0.291704657263826                         0           0    0
##      0.31263158525612                          0           0    0
##      0.313581394222809                         0           0    0
##      0.399450114450523                         0           0    0
##      0.419739887455571                         0           0    0
##      0.425358901761228                         0           0    0
##      0.594035429893685                         0           0    0
##      0.671638488556335                         0           0    0
##      0.688092298985074                         0           0    0
##      0.806600378227794                         0           0    0
##      0.867455094638368                         0           0    0
##      0.897003448844096                         0           0    0
## 
## , , OTT_Time = 0.125, Snapchat_Time = 0.6208333333, Instagram_Time = 0.156944444444444
## 
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.125 0.142361111111111 0.152777777777778
##      0.000000000123720820519974     0                 0                 0
##      0.0000000142143709248919       0                 0                 0
##      0.0000000203570784591136       0                 0                 0
##      0.0000000942663046181582       0                 0                 0
##      0.0381424863643358             0                 0                 0
##      0.0395235614826762             0                 0                 0
##      0.0398504564629362             0                 0                 0
##      0.0449831541922517             0                 0                 0
##      0.150208567676068              0                 0                 0
##      0.291704657263826              0                 0                 0
##      0.31263158525612               0                 0                 0
##      0.313581394222809              0                 0                 0
##      0.399450114450523              0                 0                 0
##      0.419739887455571              0                 0                 0
##      0.425358901761228              0                 0                 0
##      0.594035429893685              0                 0                 0
##      0.671638488556335              0                 0                 0
##      0.688092298985074              0                 0                 0
##      0.806600378227794              0                 0                 0
##      0.867455094638368              0                 0                 0
##      0.897003448844096              0                 0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.174305555555556 0.208333333333333
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.220833333333333 0.25 0.270833333333333
##      0.000000000123720820519974                 0    0                 0
##      0.0000000142143709248919                   0    0                 0
##      0.0000000203570784591136                   0    0                 0
##      0.0000000942663046181582                   0    0                 0
##      0.0381424863643358                         0    0                 0
##      0.0395235614826762                         0    0                 0
##      0.0398504564629362                         0    0                 0
##      0.0449831541922517                         0    0                 0
##      0.150208567676068                          0    0                 0
##      0.291704657263826                          0    0                 0
##      0.31263158525612                           0    0                 0
##      0.313581394222809                          0    0                 0
##      0.399450114450523                          0    0                 0
##      0.419739887455571                          0    0                 0
##      0.425358901761228                          0    0                 0
##      0.594035429893685                          0    0                 0
##      0.671638488556335                          0    0                 0
##      0.688092298985074                          0    0                 0
##      0.806600378227794                          0    0                 0
##      0.867455094638368                          0    0                 0
##      0.897003448844096                          0    0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.289583333333333 0.371527777777778
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.409722222222222 0.416666666666667 0.5 0.55625
##      0.000000000123720820519974                 0                 0   0       0
##      0.0000000142143709248919                   0                 0   0       0
##      0.0000000203570784591136                   0                 0   0       0
##      0.0000000942663046181582                   0                 0   0       0
##      0.0381424863643358                         0                 0   0       0
##      0.0395235614826762                         0                 0   0       0
##      0.0398504564629362                         0                 0   0       0
##      0.0449831541922517                         0                 0   0       0
##      0.150208567676068                          0                 0   0       0
##      0.291704657263826                          0                 0   0       0
##      0.31263158525612                           0                 0   0       0
##      0.313581394222809                          0                 0   0       0
##      0.399450114450523                          0                 0   0       0
##      0.419739887455571                          0                 0   0       0
##      0.425358901761228                          0                 0   0       0
##      0.594035429893685                          0                 0   0       0
##      0.671638488556335                          0                 0   0       0
##      0.688092298985074                          0                 0   0       0
##      0.806600378227794                          0                 0   0       0
##      0.867455094638368                          0                 0   0       0
##      0.897003448844096                          0                 0   0       0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.639583333333333 0.907785087701754 1
##      0.000000000123720820519974                 0                 0 0
##      0.0000000142143709248919                   0                 0 0
##      0.0000000203570784591136                   0                 0 0
##      0.0000000942663046181582                   0                 0 0
##      0.0381424863643358                         0                 0 0
##      0.0395235614826762                         0                 0 0
##      0.0398504564629362                         0                 0 0
##      0.0449831541922517                         0                 0 0
##      0.150208567676068                          0                 0 0
##      0.291704657263826                          0                 0 0
##      0.31263158525612                           0                 0 0
##      0.313581394222809                          0                 0 0
##      0.399450114450523                          0                 0 0
##      0.419739887455571                          0                 0 0
##      0.425358901761228                          0                 0 0
##      0.594035429893685                          0                 0 0
##      0.671638488556335                          0                 0 0
##      0.688092298985074                          0                 0 0
##      0.806600378227794                          0                 0 0
##      0.867455094638368                          0                 0 0
##      0.897003448844096                          0                 0 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 1.34930555555556 4.020833333 6.15
##      0.000000000123720820519974                0           0    0
##      0.0000000142143709248919                  0           0    0
##      0.0000000203570784591136                  0           0    0
##      0.0000000942663046181582                  0           0    0
##      0.0381424863643358                        0           0    0
##      0.0395235614826762                        0           0    0
##      0.0398504564629362                        0           0    0
##      0.0449831541922517                        0           0    0
##      0.150208567676068                         0           0    0
##      0.291704657263826                         0           0    0
##      0.31263158525612                          0           0    0
##      0.313581394222809                         0           0    0
##      0.399450114450523                         0           0    0
##      0.419739887455571                         0           0    0
##      0.425358901761228                         0           0    0
##      0.594035429893685                         0           0    0
##      0.671638488556335                         0           0    0
##      0.688092298985074                         0           0    0
##      0.806600378227794                         0           0    0
##      0.867455094638368                         0           0    0
##      0.897003448844096                         0           0    0
## 
## , , OTT_Time = 0.416666666666667, Snapchat_Time = 0.6208333333, Instagram_Time = 0.156944444444444
## 
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.125 0.142361111111111 0.152777777777778
##      0.000000000123720820519974     0                 0                 0
##      0.0000000142143709248919       0                 0                 0
##      0.0000000203570784591136       0                 0                 0
##      0.0000000942663046181582       0                 0                 0
##      0.0381424863643358             0                 0                 0
##      0.0395235614826762             0                 0                 0
##      0.0398504564629362             0                 0                 0
##      0.0449831541922517             0                 0                 0
##      0.150208567676068              0                 0                 0
##      0.291704657263826              0                 0                 0
##      0.31263158525612               0                 0                 0
##      0.313581394222809              0                 0                 0
##      0.399450114450523              0                 0                 0
##      0.419739887455571              0                 0                 0
##      0.425358901761228              0                 0                 0
##      0.594035429893685              0                 0                 0
##      0.671638488556335              0                 0                 0
##      0.688092298985074              0                 0                 0
##      0.806600378227794              0                 0                 0
##      0.867455094638368              0                 0                 0
##      0.897003448844096              0                 0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.174305555555556 0.208333333333333
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.220833333333333 0.25 0.270833333333333
##      0.000000000123720820519974                 0    0                 0
##      0.0000000142143709248919                   0    0                 0
##      0.0000000203570784591136                   0    0                 0
##      0.0000000942663046181582                   0    0                 0
##      0.0381424863643358                         0    0                 0
##      0.0395235614826762                         0    0                 0
##      0.0398504564629362                         0    0                 0
##      0.0449831541922517                         0    0                 0
##      0.150208567676068                          0    0                 0
##      0.291704657263826                          0    0                 0
##      0.31263158525612                           0    0                 0
##      0.313581394222809                          0    0                 0
##      0.399450114450523                          0    0                 0
##      0.419739887455571                          0    0                 0
##      0.425358901761228                          0    0                 0
##      0.594035429893685                          0    0                 0
##      0.671638488556335                          0    0                 0
##      0.688092298985074                          0    0                 0
##      0.806600378227794                          0    0                 0
##      0.867455094638368                          0    0                 0
##      0.897003448844096                          0    0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.289583333333333 0.371527777777778
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.409722222222222 0.416666666666667 0.5 0.55625
##      0.000000000123720820519974                 0                 0   0       0
##      0.0000000142143709248919                   0                 0   0       0
##      0.0000000203570784591136                   0                 0   0       0
##      0.0000000942663046181582                   0                 0   0       0
##      0.0381424863643358                         0                 0   0       0
##      0.0395235614826762                         0                 0   0       0
##      0.0398504564629362                         0                 0   0       0
##      0.0449831541922517                         0                 0   0       0
##      0.150208567676068                          0                 0   0       0
##      0.291704657263826                          0                 0   0       0
##      0.31263158525612                           0                 0   0       0
##      0.313581394222809                          0                 0   0       0
##      0.399450114450523                          0                 0   0       0
##      0.419739887455571                          0                 0   0       0
##      0.425358901761228                          0                 0   0       0
##      0.594035429893685                          0                 0   0       0
##      0.671638488556335                          0                 0   0       0
##      0.688092298985074                          0                 0   0       0
##      0.806600378227794                          0                 0   0       0
##      0.867455094638368                          0                 0   0       0
##      0.897003448844096                          0                 0   0       0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.639583333333333 0.907785087701754 1
##      0.000000000123720820519974                 0                 0 0
##      0.0000000142143709248919                   0                 0 0
##      0.0000000203570784591136                   0                 0 0
##      0.0000000942663046181582                   0                 0 0
##      0.0381424863643358                         0                 0 0
##      0.0395235614826762                         0                 0 0
##      0.0398504564629362                         0                 0 0
##      0.0449831541922517                         0                 0 0
##      0.150208567676068                          0                 0 0
##      0.291704657263826                          0                 0 0
##      0.31263158525612                           0                 0 0
##      0.313581394222809                          0                 0 0
##      0.399450114450523                          0                 0 0
##      0.419739887455571                          0                 0 0
##      0.425358901761228                          0                 0 0
##      0.594035429893685                          0                 0 0
##      0.671638488556335                          0                 0 0
##      0.688092298985074                          0                 0 0
##      0.806600378227794                          0                 0 0
##      0.867455094638368                          0                 0 0
##      0.897003448844096                          0                 0 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 1.34930555555556 4.020833333 6.15
##      0.000000000123720820519974                0           0    0
##      0.0000000142143709248919                  0           0    0
##      0.0000000203570784591136                  0           0    0
##      0.0000000942663046181582                  0           0    0
##      0.0381424863643358                        0           0    0
##      0.0395235614826762                        0           0    0
##      0.0398504564629362                        0           0    0
##      0.0449831541922517                        0           0    0
##      0.150208567676068                         0           0    0
##      0.291704657263826                         0           0    0
##      0.31263158525612                          0           0    0
##      0.313581394222809                         0           0    0
##      0.399450114450523                         0           0    0
##      0.419739887455571                         0           0    0
##      0.425358901761228                         0           0    0
##      0.594035429893685                         0           0    0
##      0.671638488556335                         0           0    0
##      0.688092298985074                         0           0    0
##      0.806600378227794                         0           0    0
##      0.867455094638368                         0           0    0
##      0.897003448844096                         0           0    0
## 
## , , OTT_Time = 0.5104166667, Snapchat_Time = 0.6208333333, Instagram_Time = 0.156944444444444
## 
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.125 0.142361111111111 0.152777777777778
##      0.000000000123720820519974     0                 0                 0
##      0.0000000142143709248919       0                 0                 0
##      0.0000000203570784591136       0                 0                 0
##      0.0000000942663046181582       0                 0                 0
##      0.0381424863643358             0                 0                 0
##      0.0395235614826762             0                 0                 0
##      0.0398504564629362             0                 0                 0
##      0.0449831541922517             0                 0                 0
##      0.150208567676068              0                 0                 0
##      0.291704657263826              0                 0                 0
##      0.31263158525612               0                 0                 0
##      0.313581394222809              0                 0                 0
##      0.399450114450523              0                 0                 0
##      0.419739887455571              0                 0                 0
##      0.425358901761228              0                 0                 0
##      0.594035429893685              0                 0                 0
##      0.671638488556335              0                 0                 0
##      0.688092298985074              0                 0                 0
##      0.806600378227794              0                 0                 0
##      0.867455094638368              0                 0                 0
##      0.897003448844096              0                 0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.174305555555556 0.208333333333333
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.220833333333333 0.25 0.270833333333333
##      0.000000000123720820519974                 0    0                 0
##      0.0000000142143709248919                   0    0                 0
##      0.0000000203570784591136                   0    0                 0
##      0.0000000942663046181582                   0    0                 0
##      0.0381424863643358                         0    0                 0
##      0.0395235614826762                         0    0                 0
##      0.0398504564629362                         0    0                 0
##      0.0449831541922517                         0    0                 0
##      0.150208567676068                          0    0                 0
##      0.291704657263826                          0    0                 0
##      0.31263158525612                           0    0                 0
##      0.313581394222809                          0    0                 0
##      0.399450114450523                          0    0                 0
##      0.419739887455571                          0    0                 0
##      0.425358901761228                          0    0                 0
##      0.594035429893685                          0    0                 0
##      0.671638488556335                          0    0                 0
##      0.688092298985074                          0    0                 0
##      0.806600378227794                          0    0                 0
##      0.867455094638368                          0    0                 0
##      0.897003448844096                          0    0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.289583333333333 0.371527777777778
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.409722222222222 0.416666666666667 0.5 0.55625
##      0.000000000123720820519974                 0                 0   0       0
##      0.0000000142143709248919                   0                 0   0       0
##      0.0000000203570784591136                   0                 0   0       0
##      0.0000000942663046181582                   0                 0   0       0
##      0.0381424863643358                         0                 0   0       0
##      0.0395235614826762                         0                 0   0       0
##      0.0398504564629362                         0                 0   0       0
##      0.0449831541922517                         0                 0   0       0
##      0.150208567676068                          0                 0   0       0
##      0.291704657263826                          0                 0   0       0
##      0.31263158525612                           0                 0   0       0
##      0.313581394222809                          0                 0   0       0
##      0.399450114450523                          0                 0   0       0
##      0.419739887455571                          0                 0   0       0
##      0.425358901761228                          0                 0   0       0
##      0.594035429893685                          0                 0   0       0
##      0.671638488556335                          0                 0   0       0
##      0.688092298985074                          0                 0   0       0
##      0.806600378227794                          0                 0   0       0
##      0.867455094638368                          0                 0   0       0
##      0.897003448844096                          0                 0   0       0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.639583333333333 0.907785087701754 1
##      0.000000000123720820519974                 0                 0 0
##      0.0000000142143709248919                   0                 0 0
##      0.0000000203570784591136                   0                 0 0
##      0.0000000942663046181582                   0                 0 0
##      0.0381424863643358                         0                 0 0
##      0.0395235614826762                         0                 0 0
##      0.0398504564629362                         0                 0 0
##      0.0449831541922517                         0                 0 0
##      0.150208567676068                          0                 0 0
##      0.291704657263826                          0                 0 0
##      0.31263158525612                           0                 0 0
##      0.313581394222809                          0                 0 0
##      0.399450114450523                          0                 0 0
##      0.419739887455571                          0                 0 0
##      0.425358901761228                          0                 0 0
##      0.594035429893685                          0                 0 0
##      0.671638488556335                          0                 0 0
##      0.688092298985074                          0                 0 0
##      0.806600378227794                          0                 0 0
##      0.867455094638368                          0                 0 0
##      0.897003448844096                          0                 0 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 1.34930555555556 4.020833333 6.15
##      0.000000000123720820519974                0           0    0
##      0.0000000142143709248919                  0           0    0
##      0.0000000203570784591136                  0           0    0
##      0.0000000942663046181582                  0           0    0
##      0.0381424863643358                        0           0    0
##      0.0395235614826762                        0           0    0
##      0.0398504564629362                        0           0    0
##      0.0449831541922517                        0           0    0
##      0.150208567676068                         0           0    0
##      0.291704657263826                         0           0    0
##      0.31263158525612                          0           0    0
##      0.313581394222809                         0           0    0
##      0.399450114450523                         0           0    0
##      0.419739887455571                         0           0    0
##      0.425358901761228                         0           0    0
##      0.594035429893685                         0           0    0
##      0.671638488556335                         0           0    0
##      0.688092298985074                         0           0    0
##      0.806600378227794                         0           0    0
##      0.867455094638368                         0           0    0
##      0.897003448844096                         0           0    0
## 
## , , OTT_Time = 1.44460470085726, Snapchat_Time = 0.6208333333, Instagram_Time = 0.156944444444444
## 
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.125 0.142361111111111 0.152777777777778
##      0.000000000123720820519974     0                 0                 0
##      0.0000000142143709248919       0                 0                 0
##      0.0000000203570784591136       0                 0                 0
##      0.0000000942663046181582       0                 0                 0
##      0.0381424863643358             0                 0                 0
##      0.0395235614826762             0                 0                 0
##      0.0398504564629362             0                 0                 0
##      0.0449831541922517             0                 0                 0
##      0.150208567676068              0                 0                 0
##      0.291704657263826              0                 0                 0
##      0.31263158525612               0                 0                 0
##      0.313581394222809              0                 0                 0
##      0.399450114450523              0                 0                 0
##      0.419739887455571              0                 0                 0
##      0.425358901761228              0                 0                 0
##      0.594035429893685              0                 0                 0
##      0.671638488556335              0                 0                 0
##      0.688092298985074              0                 0                 0
##      0.806600378227794              0                 0                 0
##      0.867455094638368              0                 0                 0
##      0.897003448844096              0                 0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.174305555555556 0.208333333333333
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.220833333333333 0.25 0.270833333333333
##      0.000000000123720820519974                 0    0                 0
##      0.0000000142143709248919                   0    0                 0
##      0.0000000203570784591136                   0    0                 0
##      0.0000000942663046181582                   0    0                 0
##      0.0381424863643358                         0    0                 0
##      0.0395235614826762                         0    0                 0
##      0.0398504564629362                         0    0                 0
##      0.0449831541922517                         0    0                 0
##      0.150208567676068                          0    0                 0
##      0.291704657263826                          0    0                 0
##      0.31263158525612                           0    0                 0
##      0.313581394222809                          0    0                 0
##      0.399450114450523                          0    0                 0
##      0.419739887455571                          0    0                 0
##      0.425358901761228                          0    0                 0
##      0.594035429893685                          0    0                 0
##      0.671638488556335                          0    0                 0
##      0.688092298985074                          0    0                 0
##      0.806600378227794                          0    0                 0
##      0.867455094638368                          0    0                 0
##      0.897003448844096                          0    0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.289583333333333 0.371527777777778
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.409722222222222 0.416666666666667 0.5 0.55625
##      0.000000000123720820519974                 0                 0   0       0
##      0.0000000142143709248919                   0                 0   0       0
##      0.0000000203570784591136                   0                 0   0       0
##      0.0000000942663046181582                   0                 0   0       0
##      0.0381424863643358                         0                 0   0       0
##      0.0395235614826762                         0                 0   0       0
##      0.0398504564629362                         0                 0   0       0
##      0.0449831541922517                         0                 0   0       0
##      0.150208567676068                          0                 0   0       0
##      0.291704657263826                          0                 0   0       0
##      0.31263158525612                           0                 0   0       0
##      0.313581394222809                          0                 0   0       0
##      0.399450114450523                          0                 0   0       0
##      0.419739887455571                          0                 0   0       0
##      0.425358901761228                          0                 0   0       0
##      0.594035429893685                          0                 0   0       0
##      0.671638488556335                          0                 0   0       0
##      0.688092298985074                          0                 0   0       0
##      0.806600378227794                          0                 0   0       0
##      0.867455094638368                          0                 0   0       0
##      0.897003448844096                          0                 0   0       0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.639583333333333 0.907785087701754 1
##      0.000000000123720820519974                 0                 0 0
##      0.0000000142143709248919                   0                 0 0
##      0.0000000203570784591136                   0                 0 0
##      0.0000000942663046181582                   0                 0 0
##      0.0381424863643358                         0                 0 0
##      0.0395235614826762                         0                 0 0
##      0.0398504564629362                         0                 0 0
##      0.0449831541922517                         0                 0 0
##      0.150208567676068                          0                 0 0
##      0.291704657263826                          0                 0 0
##      0.31263158525612                           0                 0 0
##      0.313581394222809                          0                 0 0
##      0.399450114450523                          0                 0 0
##      0.419739887455571                          0                 0 0
##      0.425358901761228                          0                 0 0
##      0.594035429893685                          0                 0 0
##      0.671638488556335                          0                 0 0
##      0.688092298985074                          0                 0 0
##      0.806600378227794                          0                 0 0
##      0.867455094638368                          0                 0 0
##      0.897003448844096                          0                 0 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 1.34930555555556 4.020833333 6.15
##      0.000000000123720820519974                0           0    0
##      0.0000000142143709248919                  0           0    0
##      0.0000000203570784591136                  0           0    0
##      0.0000000942663046181582                  0           0    0
##      0.0381424863643358                        0           0    0
##      0.0395235614826762                        0           0    0
##      0.0398504564629362                        0           0    0
##      0.0449831541922517                        0           0    0
##      0.150208567676068                         0           0    0
##      0.291704657263826                         0           0    0
##      0.31263158525612                          0           0    0
##      0.313581394222809                         0           0    0
##      0.399450114450523                         0           0    0
##      0.419739887455571                         0           0    0
##      0.425358901761228                         0           0    0
##      0.594035429893685                         0           0    0
##      0.671638488556335                         0           0    0
##      0.688092298985074                         0           0    0
##      0.806600378227794                         0           0    0
##      0.867455094638368                         0           0    0
##      0.897003448844096                         0           0    0
## 
## , , OTT_Time = 3, Snapchat_Time = 0.6208333333, Instagram_Time = 0.156944444444444
## 
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.125 0.142361111111111 0.152777777777778
##      0.000000000123720820519974     0                 0                 0
##      0.0000000142143709248919       0                 0                 0
##      0.0000000203570784591136       0                 0                 0
##      0.0000000942663046181582       0                 0                 0
##      0.0381424863643358             0                 0                 0
##      0.0395235614826762             0                 0                 0
##      0.0398504564629362             0                 0                 0
##      0.0449831541922517             0                 0                 0
##      0.150208567676068              0                 0                 0
##      0.291704657263826              0                 0                 0
##      0.31263158525612               0                 0                 0
##      0.313581394222809              0                 0                 0
##      0.399450114450523              0                 0                 0
##      0.419739887455571              0                 0                 0
##      0.425358901761228              0                 0                 0
##      0.594035429893685              0                 0                 0
##      0.671638488556335              0                 0                 0
##      0.688092298985074              0                 0                 0
##      0.806600378227794              0                 0                 0
##      0.867455094638368              0                 0                 0
##      0.897003448844096              0                 0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.174305555555556 0.208333333333333
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.220833333333333 0.25 0.270833333333333
##      0.000000000123720820519974                 0    0                 0
##      0.0000000142143709248919                   0    0                 0
##      0.0000000203570784591136                   0    0                 0
##      0.0000000942663046181582                   0    0                 0
##      0.0381424863643358                         0    0                 0
##      0.0395235614826762                         0    0                 0
##      0.0398504564629362                         0    0                 0
##      0.0449831541922517                         0    0                 0
##      0.150208567676068                          0    0                 0
##      0.291704657263826                          0    0                 0
##      0.31263158525612                           0    0                 0
##      0.313581394222809                          0    0                 0
##      0.399450114450523                          0    0                 0
##      0.419739887455571                          0    0                 0
##      0.425358901761228                          0    0                 0
##      0.594035429893685                          0    0                 0
##      0.671638488556335                          0    0                 0
##      0.688092298985074                          0    0                 0
##      0.806600378227794                          0    0                 0
##      0.867455094638368                          0    0                 0
##      0.897003448844096                          0    0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.289583333333333 0.371527777777778
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.409722222222222 0.416666666666667 0.5 0.55625
##      0.000000000123720820519974                 0                 0   0       0
##      0.0000000142143709248919                   0                 0   0       0
##      0.0000000203570784591136                   0                 0   0       0
##      0.0000000942663046181582                   0                 0   0       0
##      0.0381424863643358                         0                 0   0       0
##      0.0395235614826762                         0                 0   0       0
##      0.0398504564629362                         0                 0   0       0
##      0.0449831541922517                         0                 0   0       0
##      0.150208567676068                          0                 0   0       0
##      0.291704657263826                          0                 0   0       0
##      0.31263158525612                           0                 0   0       0
##      0.313581394222809                          0                 0   0       0
##      0.399450114450523                          0                 0   0       0
##      0.419739887455571                          0                 0   0       0
##      0.425358901761228                          0                 0   0       0
##      0.594035429893685                          0                 0   0       0
##      0.671638488556335                          0                 0   0       0
##      0.688092298985074                          0                 0   0       0
##      0.806600378227794                          0                 0   0       0
##      0.867455094638368                          0                 0   0       0
##      0.897003448844096                          0                 0   0       0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.639583333333333 0.907785087701754 1
##      0.000000000123720820519974                 0                 0 0
##      0.0000000142143709248919                   0                 0 0
##      0.0000000203570784591136                   0                 0 0
##      0.0000000942663046181582                   0                 0 0
##      0.0381424863643358                         0                 0 0
##      0.0395235614826762                         0                 0 0
##      0.0398504564629362                         0                 0 0
##      0.0449831541922517                         0                 0 0
##      0.150208567676068                          0                 0 0
##      0.291704657263826                          0                 0 0
##      0.31263158525612                           0                 0 0
##      0.313581394222809                          0                 0 0
##      0.399450114450523                          0                 0 0
##      0.419739887455571                          0                 0 0
##      0.425358901761228                          0                 0 0
##      0.594035429893685                          0                 0 0
##      0.671638488556335                          0                 0 0
##      0.688092298985074                          0                 0 0
##      0.806600378227794                          0                 0 0
##      0.867455094638368                          0                 0 0
##      0.897003448844096                          0                 0 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 1.34930555555556 4.020833333 6.15
##      0.000000000123720820519974                0           0    0
##      0.0000000142143709248919                  0           0    0
##      0.0000000203570784591136                  0           0    0
##      0.0000000942663046181582                  0           0    0
##      0.0381424863643358                        0           0    0
##      0.0395235614826762                        0           0    0
##      0.0398504564629362                        0           0    0
##      0.0449831541922517                        0           0    0
##      0.150208567676068                         0           0    0
##      0.291704657263826                         0           0    0
##      0.31263158525612                          0           0    0
##      0.313581394222809                         0           0    0
##      0.399450114450523                         0           0    0
##      0.419739887455571                         0           0    0
##      0.425358901761228                         0           0    0
##      0.594035429893685                         0           0    0
##      0.671638488556335                         0           0    0
##      0.688092298985074                         0           0    0
##      0.806600378227794                         0           0    0
##      0.867455094638368                         0           0    0
##      0.897003448844096                         0           0    0
## 
## , , OTT_Time = 14.5, Snapchat_Time = 0.6208333333, Instagram_Time = 0.156944444444444
## 
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.125 0.142361111111111 0.152777777777778
##      0.000000000123720820519974     0                 0                 0
##      0.0000000142143709248919       0                 0                 0
##      0.0000000203570784591136       0                 0                 0
##      0.0000000942663046181582       0                 0                 0
##      0.0381424863643358             0                 0                 0
##      0.0395235614826762             0                 0                 0
##      0.0398504564629362             0                 0                 0
##      0.0449831541922517             0                 0                 0
##      0.150208567676068              0                 0                 0
##      0.291704657263826              0                 0                 0
##      0.31263158525612               0                 0                 0
##      0.313581394222809              0                 0                 0
##      0.399450114450523              0                 0                 0
##      0.419739887455571              0                 0                 0
##      0.425358901761228              0                 0                 0
##      0.594035429893685              0                 0                 0
##      0.671638488556335              0                 0                 0
##      0.688092298985074              0                 0                 0
##      0.806600378227794              0                 0                 0
##      0.867455094638368              0                 0                 0
##      0.897003448844096              0                 0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.174305555555556 0.208333333333333
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.220833333333333 0.25 0.270833333333333
##      0.000000000123720820519974                 0    0                 0
##      0.0000000142143709248919                   0    0                 0
##      0.0000000203570784591136                   0    0                 0
##      0.0000000942663046181582                   0    0                 0
##      0.0381424863643358                         0    0                 0
##      0.0395235614826762                         0    0                 0
##      0.0398504564629362                         0    0                 0
##      0.0449831541922517                         0    0                 0
##      0.150208567676068                          0    0                 0
##      0.291704657263826                          0    0                 0
##      0.31263158525612                           0    0                 0
##      0.313581394222809                          0    0                 0
##      0.399450114450523                          0    0                 0
##      0.419739887455571                          0    0                 0
##      0.425358901761228                          0    0                 0
##      0.594035429893685                          0    0                 0
##      0.671638488556335                          0    0                 0
##      0.688092298985074                          0    0                 0
##      0.806600378227794                          0    0                 0
##      0.867455094638368                          0    0                 0
##      0.897003448844096                          0    0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.289583333333333 0.371527777777778
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.409722222222222 0.416666666666667 0.5 0.55625
##      0.000000000123720820519974                 0                 0   0       0
##      0.0000000142143709248919                   0                 0   0       0
##      0.0000000203570784591136                   0                 0   0       0
##      0.0000000942663046181582                   0                 0   0       0
##      0.0381424863643358                         0                 0   0       0
##      0.0395235614826762                         0                 0   0       0
##      0.0398504564629362                         0                 0   0       0
##      0.0449831541922517                         0                 0   0       0
##      0.150208567676068                          0                 0   0       0
##      0.291704657263826                          0                 0   0       0
##      0.31263158525612                           0                 0   0       0
##      0.313581394222809                          0                 0   0       0
##      0.399450114450523                          0                 0   0       0
##      0.419739887455571                          0                 0   0       0
##      0.425358901761228                          0                 0   0       0
##      0.594035429893685                          0                 0   0       0
##      0.671638488556335                          0                 0   0       0
##      0.688092298985074                          0                 0   0       0
##      0.806600378227794                          0                 0   0       0
##      0.867455094638368                          0                 0   0       0
##      0.897003448844096                          0                 0   0       0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.639583333333333 0.907785087701754 1
##      0.000000000123720820519974                 0                 0 0
##      0.0000000142143709248919                   0                 0 0
##      0.0000000203570784591136                   0                 0 0
##      0.0000000942663046181582                   0                 0 0
##      0.0381424863643358                         0                 0 0
##      0.0395235614826762                         0                 0 0
##      0.0398504564629362                         0                 0 0
##      0.0449831541922517                         0                 0 0
##      0.150208567676068                          0                 0 0
##      0.291704657263826                          0                 0 0
##      0.31263158525612                           0                 0 0
##      0.313581394222809                          0                 0 0
##      0.399450114450523                          0                 0 0
##      0.419739887455571                          0                 0 0
##      0.425358901761228                          0                 0 0
##      0.594035429893685                          0                 0 0
##      0.671638488556335                          0                 0 0
##      0.688092298985074                          0                 0 0
##      0.806600378227794                          0                 0 0
##      0.867455094638368                          0                 0 0
##      0.897003448844096                          0                 0 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 1.34930555555556 4.020833333 6.15
##      0.000000000123720820519974                0           0    0
##      0.0000000142143709248919                  0           0    0
##      0.0000000203570784591136                  0           0    0
##      0.0000000942663046181582                  0           0    0
##      0.0381424863643358                        0           0    0
##      0.0395235614826762                        0           0    0
##      0.0398504564629362                        0           0    0
##      0.0449831541922517                        0           0    0
##      0.150208567676068                         0           0    0
##      0.291704657263826                         0           0    0
##      0.31263158525612                          0           0    0
##      0.313581394222809                         0           0    0
##      0.399450114450523                         0           0    0
##      0.419739887455571                         0           0    0
##      0.425358901761228                         0           0    0
##      0.594035429893685                         0           0    0
##      0.671638488556335                         0           0    0
##      0.688092298985074                         0           0    0
##      0.806600378227794                         0           0    0
##      0.867455094638368                         0           0    0
##      0.897003448844096                         0           0    0
## 
## , , OTT_Time = 0, Snapchat_Time = 1, Instagram_Time = 0.156944444444444
## 
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.125 0.142361111111111 0.152777777777778
##      0.000000000123720820519974     0                 0                 0
##      0.0000000142143709248919       0                 0                 0
##      0.0000000203570784591136       0                 0                 0
##      0.0000000942663046181582       0                 0                 0
##      0.0381424863643358             0                 0                 0
##      0.0395235614826762             0                 0                 0
##      0.0398504564629362             0                 0                 0
##      0.0449831541922517             0                 0                 0
##      0.150208567676068              0                 0                 0
##      0.291704657263826              0                 0                 0
##      0.31263158525612               0                 0                 0
##      0.313581394222809              0                 0                 0
##      0.399450114450523              0                 0                 0
##      0.419739887455571              0                 0                 0
##      0.425358901761228              0                 0                 0
##      0.594035429893685              0                 0                 0
##      0.671638488556335              0                 0                 0
##      0.688092298985074              0                 0                 0
##      0.806600378227794              0                 0                 0
##      0.867455094638368              0                 0                 0
##      0.897003448844096              0                 0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.174305555555556 0.208333333333333
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.220833333333333 0.25 0.270833333333333
##      0.000000000123720820519974                 0    0                 0
##      0.0000000142143709248919                   0    0                 0
##      0.0000000203570784591136                   0    0                 0
##      0.0000000942663046181582                   0    0                 0
##      0.0381424863643358                         0    0                 0
##      0.0395235614826762                         0    0                 0
##      0.0398504564629362                         0    0                 0
##      0.0449831541922517                         0    0                 0
##      0.150208567676068                          0    0                 0
##      0.291704657263826                          0    0                 0
##      0.31263158525612                           0    0                 0
##      0.313581394222809                          0    0                 0
##      0.399450114450523                          0    0                 0
##      0.419739887455571                          0    0                 0
##      0.425358901761228                          0    0                 0
##      0.594035429893685                          0    0                 0
##      0.671638488556335                          0    0                 0
##      0.688092298985074                          0    0                 0
##      0.806600378227794                          0    0                 0
##      0.867455094638368                          0    0                 0
##      0.897003448844096                          0    0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.289583333333333 0.371527777777778
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.409722222222222 0.416666666666667 0.5 0.55625
##      0.000000000123720820519974                 0                 0   0       0
##      0.0000000142143709248919                   0                 0   0       0
##      0.0000000203570784591136                   0                 0   0       0
##      0.0000000942663046181582                   0                 0   0       0
##      0.0381424863643358                         0                 0   0       0
##      0.0395235614826762                         0                 0   0       0
##      0.0398504564629362                         0                 0   0       0
##      0.0449831541922517                         0                 0   0       0
##      0.150208567676068                          0                 0   0       0
##      0.291704657263826                          0                 0   0       0
##      0.31263158525612                           0                 0   0       0
##      0.313581394222809                          0                 0   0       0
##      0.399450114450523                          0                 0   0       0
##      0.419739887455571                          0                 0   0       0
##      0.425358901761228                          0                 0   0       0
##      0.594035429893685                          0                 0   0       0
##      0.671638488556335                          0                 0   0       0
##      0.688092298985074                          0                 0   0       0
##      0.806600378227794                          0                 0   0       0
##      0.867455094638368                          0                 0   0       0
##      0.897003448844096                          0                 0   0       0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.639583333333333 0.907785087701754 1
##      0.000000000123720820519974                 0                 0 0
##      0.0000000142143709248919                   0                 0 0
##      0.0000000203570784591136                   0                 0 0
##      0.0000000942663046181582                   0                 0 0
##      0.0381424863643358                         0                 0 0
##      0.0395235614826762                         0                 0 0
##      0.0398504564629362                         0                 0 0
##      0.0449831541922517                         0                 0 0
##      0.150208567676068                          0                 0 0
##      0.291704657263826                          0                 0 0
##      0.31263158525612                           0                 0 0
##      0.313581394222809                          0                 0 0
##      0.399450114450523                          0                 0 0
##      0.419739887455571                          0                 0 0
##      0.425358901761228                          0                 0 0
##      0.594035429893685                          0                 0 0
##      0.671638488556335                          0                 0 0
##      0.688092298985074                          0                 0 0
##      0.806600378227794                          0                 0 0
##      0.867455094638368                          0                 0 0
##      0.897003448844096                          0                 0 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 1.34930555555556 4.020833333 6.15
##      0.000000000123720820519974                0           0    0
##      0.0000000142143709248919                  0           0    0
##      0.0000000203570784591136                  0           0    0
##      0.0000000942663046181582                  0           0    0
##      0.0381424863643358                        0           0    0
##      0.0395235614826762                        0           0    0
##      0.0398504564629362                        0           0    0
##      0.0449831541922517                        0           0    0
##      0.150208567676068                         0           0    0
##      0.291704657263826                         0           0    0
##      0.31263158525612                          0           0    0
##      0.313581394222809                         0           0    0
##      0.399450114450523                         0           0    0
##      0.419739887455571                         0           0    0
##      0.425358901761228                         0           0    0
##      0.594035429893685                         0           0    0
##      0.671638488556335                         0           0    0
##      0.688092298985074                         0           0    0
##      0.806600378227794                         0           0    0
##      0.867455094638368                         0           0    0
##      0.897003448844096                         0           0    0
## 
## , , OTT_Time = 0.102777777777778, Snapchat_Time = 1, Instagram_Time = 0.156944444444444
## 
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.125 0.142361111111111 0.152777777777778
##      0.000000000123720820519974     0                 0                 0
##      0.0000000142143709248919       0                 0                 0
##      0.0000000203570784591136       0                 0                 0
##      0.0000000942663046181582       0                 0                 0
##      0.0381424863643358             0                 0                 0
##      0.0395235614826762             0                 0                 0
##      0.0398504564629362             0                 0                 0
##      0.0449831541922517             0                 0                 0
##      0.150208567676068              0                 0                 0
##      0.291704657263826              0                 0                 0
##      0.31263158525612               0                 0                 0
##      0.313581394222809              0                 0                 0
##      0.399450114450523              0                 0                 0
##      0.419739887455571              0                 0                 0
##      0.425358901761228              0                 0                 0
##      0.594035429893685              0                 0                 0
##      0.671638488556335              0                 0                 0
##      0.688092298985074              0                 0                 0
##      0.806600378227794              0                 0                 0
##      0.867455094638368              0                 0                 0
##      0.897003448844096              0                 0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.174305555555556 0.208333333333333
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.220833333333333 0.25 0.270833333333333
##      0.000000000123720820519974                 0    0                 0
##      0.0000000142143709248919                   0    0                 0
##      0.0000000203570784591136                   0    0                 0
##      0.0000000942663046181582                   0    0                 0
##      0.0381424863643358                         0    0                 0
##      0.0395235614826762                         0    0                 0
##      0.0398504564629362                         0    0                 0
##      0.0449831541922517                         0    0                 0
##      0.150208567676068                          0    0                 0
##      0.291704657263826                          0    0                 0
##      0.31263158525612                           0    0                 0
##      0.313581394222809                          0    0                 0
##      0.399450114450523                          0    0                 0
##      0.419739887455571                          0    0                 0
##      0.425358901761228                          0    0                 0
##      0.594035429893685                          0    0                 0
##      0.671638488556335                          0    0                 0
##      0.688092298985074                          0    0                 0
##      0.806600378227794                          0    0                 0
##      0.867455094638368                          0    0                 0
##      0.897003448844096                          0    0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.289583333333333 0.371527777777778
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.409722222222222 0.416666666666667 0.5 0.55625
##      0.000000000123720820519974                 0                 0   0       0
##      0.0000000142143709248919                   0                 0   0       0
##      0.0000000203570784591136                   0                 0   0       0
##      0.0000000942663046181582                   0                 0   0       0
##      0.0381424863643358                         0                 0   0       0
##      0.0395235614826762                         0                 0   0       0
##      0.0398504564629362                         0                 0   0       0
##      0.0449831541922517                         0                 0   0       0
##      0.150208567676068                          0                 0   0       0
##      0.291704657263826                          0                 0   0       0
##      0.31263158525612                           0                 0   0       0
##      0.313581394222809                          0                 0   0       0
##      0.399450114450523                          0                 0   0       0
##      0.419739887455571                          0                 0   0       0
##      0.425358901761228                          0                 0   0       0
##      0.594035429893685                          0                 0   0       0
##      0.671638488556335                          0                 0   0       0
##      0.688092298985074                          0                 0   0       0
##      0.806600378227794                          0                 0   0       0
##      0.867455094638368                          0                 0   0       0
##      0.897003448844096                          0                 0   0       0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.639583333333333 0.907785087701754 1
##      0.000000000123720820519974                 0                 0 0
##      0.0000000142143709248919                   0                 0 0
##      0.0000000203570784591136                   0                 0 0
##      0.0000000942663046181582                   0                 0 0
##      0.0381424863643358                         0                 0 0
##      0.0395235614826762                         0                 0 0
##      0.0398504564629362                         0                 0 0
##      0.0449831541922517                         0                 0 0
##      0.150208567676068                          0                 0 0
##      0.291704657263826                          0                 0 0
##      0.31263158525612                           0                 0 0
##      0.313581394222809                          0                 0 0
##      0.399450114450523                          0                 0 0
##      0.419739887455571                          0                 0 0
##      0.425358901761228                          0                 0 0
##      0.594035429893685                          0                 0 0
##      0.671638488556335                          0                 0 0
##      0.688092298985074                          0                 0 0
##      0.806600378227794                          0                 0 0
##      0.867455094638368                          0                 0 0
##      0.897003448844096                          0                 0 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 1.34930555555556 4.020833333 6.15
##      0.000000000123720820519974                0           0    0
##      0.0000000142143709248919                  0           0    0
##      0.0000000203570784591136                  0           0    0
##      0.0000000942663046181582                  0           0    0
##      0.0381424863643358                        0           0    0
##      0.0395235614826762                        0           0    0
##      0.0398504564629362                        0           0    0
##      0.0449831541922517                        0           0    0
##      0.150208567676068                         0           0    0
##      0.291704657263826                         0           0    0
##      0.31263158525612                          0           0    0
##      0.313581394222809                         0           0    0
##      0.399450114450523                         0           0    0
##      0.419739887455571                         0           0    0
##      0.425358901761228                         0           0    0
##      0.594035429893685                         0           0    0
##      0.671638488556335                         0           0    0
##      0.688092298985074                         0           0    0
##      0.806600378227794                         0           0    0
##      0.867455094638368                         0           0    0
##      0.897003448844096                         0           0    0
## 
## , , OTT_Time = 0.125, Snapchat_Time = 1, Instagram_Time = 0.156944444444444
## 
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.125 0.142361111111111 0.152777777777778
##      0.000000000123720820519974     0                 0                 0
##      0.0000000142143709248919       0                 0                 0
##      0.0000000203570784591136       0                 0                 0
##      0.0000000942663046181582       0                 0                 0
##      0.0381424863643358             0                 0                 0
##      0.0395235614826762             0                 0                 0
##      0.0398504564629362             0                 0                 0
##      0.0449831541922517             0                 0                 0
##      0.150208567676068              0                 0                 0
##      0.291704657263826              0                 0                 0
##      0.31263158525612               0                 0                 0
##      0.313581394222809              0                 0                 0
##      0.399450114450523              0                 0                 0
##      0.419739887455571              0                 0                 0
##      0.425358901761228              0                 0                 0
##      0.594035429893685              0                 0                 0
##      0.671638488556335              0                 0                 0
##      0.688092298985074              0                 0                 0
##      0.806600378227794              0                 0                 0
##      0.867455094638368              0                 0                 0
##      0.897003448844096              0                 0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.174305555555556 0.208333333333333
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.220833333333333 0.25 0.270833333333333
##      0.000000000123720820519974                 0    0                 0
##      0.0000000142143709248919                   0    0                 0
##      0.0000000203570784591136                   0    0                 0
##      0.0000000942663046181582                   0    0                 0
##      0.0381424863643358                         0    0                 0
##      0.0395235614826762                         0    0                 0
##      0.0398504564629362                         0    0                 0
##      0.0449831541922517                         0    0                 0
##      0.150208567676068                          0    0                 0
##      0.291704657263826                          0    0                 0
##      0.31263158525612                           0    0                 0
##      0.313581394222809                          0    0                 0
##      0.399450114450523                          0    0                 0
##      0.419739887455571                          0    0                 0
##      0.425358901761228                          0    0                 0
##      0.594035429893685                          0    0                 0
##      0.671638488556335                          0    0                 0
##      0.688092298985074                          0    0                 0
##      0.806600378227794                          0    0                 0
##      0.867455094638368                          0    0                 0
##      0.897003448844096                          0    0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.289583333333333 0.371527777777778
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.409722222222222 0.416666666666667 0.5 0.55625
##      0.000000000123720820519974                 0                 0   0       0
##      0.0000000142143709248919                   0                 0   0       0
##      0.0000000203570784591136                   0                 0   0       0
##      0.0000000942663046181582                   0                 0   0       0
##      0.0381424863643358                         0                 0   0       0
##      0.0395235614826762                         0                 0   0       0
##      0.0398504564629362                         0                 0   0       0
##      0.0449831541922517                         0                 0   0       0
##      0.150208567676068                          0                 0   0       0
##      0.291704657263826                          0                 0   0       0
##      0.31263158525612                           0                 0   0       0
##      0.313581394222809                          0                 0   0       0
##      0.399450114450523                          0                 0   0       0
##      0.419739887455571                          0                 0   0       0
##      0.425358901761228                          0                 0   0       0
##      0.594035429893685                          0                 0   0       0
##      0.671638488556335                          0                 0   0       0
##      0.688092298985074                          0                 0   0       0
##      0.806600378227794                          0                 0   0       0
##      0.867455094638368                          0                 0   0       0
##      0.897003448844096                          0                 0   0       0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.639583333333333 0.907785087701754 1
##      0.000000000123720820519974                 0                 0 0
##      0.0000000142143709248919                   0                 0 0
##      0.0000000203570784591136                   0                 0 0
##      0.0000000942663046181582                   0                 0 0
##      0.0381424863643358                         0                 0 0
##      0.0395235614826762                         0                 0 0
##      0.0398504564629362                         0                 0 0
##      0.0449831541922517                         0                 0 0
##      0.150208567676068                          0                 0 0
##      0.291704657263826                          0                 0 0
##      0.31263158525612                           0                 0 0
##      0.313581394222809                          0                 0 0
##      0.399450114450523                          0                 0 0
##      0.419739887455571                          0                 0 0
##      0.425358901761228                          0                 0 0
##      0.594035429893685                          0                 0 0
##      0.671638488556335                          0                 0 0
##      0.688092298985074                          0                 0 0
##      0.806600378227794                          0                 0 0
##      0.867455094638368                          0                 0 0
##      0.897003448844096                          0                 0 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 1.34930555555556 4.020833333 6.15
##      0.000000000123720820519974                0           0    0
##      0.0000000142143709248919                  0           0    0
##      0.0000000203570784591136                  0           0    0
##      0.0000000942663046181582                  0           0    0
##      0.0381424863643358                        0           0    0
##      0.0395235614826762                        0           0    0
##      0.0398504564629362                        0           0    0
##      0.0449831541922517                        0           0    0
##      0.150208567676068                         0           0    0
##      0.291704657263826                         0           0    0
##      0.31263158525612                          0           0    0
##      0.313581394222809                         0           0    0
##      0.399450114450523                         0           0    0
##      0.419739887455571                         0           0    0
##      0.425358901761228                         0           0    0
##      0.594035429893685                         0           0    0
##      0.671638488556335                         0           0    0
##      0.688092298985074                         0           0    0
##      0.806600378227794                         0           0    0
##      0.867455094638368                         0           0    0
##      0.897003448844096                         0           0    0
## 
## , , OTT_Time = 0.416666666666667, Snapchat_Time = 1, Instagram_Time = 0.156944444444444
## 
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.125 0.142361111111111 0.152777777777778
##      0.000000000123720820519974     0                 0                 0
##      0.0000000142143709248919       0                 0                 0
##      0.0000000203570784591136       0                 0                 0
##      0.0000000942663046181582       0                 0                 0
##      0.0381424863643358             0                 0                 0
##      0.0395235614826762             0                 0                 0
##      0.0398504564629362             0                 0                 0
##      0.0449831541922517             0                 0                 0
##      0.150208567676068              0                 0                 0
##      0.291704657263826              0                 0                 0
##      0.31263158525612               0                 0                 0
##      0.313581394222809              0                 0                 0
##      0.399450114450523              0                 0                 0
##      0.419739887455571              0                 0                 0
##      0.425358901761228              0                 0                 0
##      0.594035429893685              0                 0                 0
##      0.671638488556335              0                 0                 0
##      0.688092298985074              0                 0                 0
##      0.806600378227794              0                 0                 0
##      0.867455094638368              0                 0                 0
##      0.897003448844096              0                 0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.174305555555556 0.208333333333333
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.220833333333333 0.25 0.270833333333333
##      0.000000000123720820519974                 0    0                 0
##      0.0000000142143709248919                   0    0                 0
##      0.0000000203570784591136                   0    0                 0
##      0.0000000942663046181582                   0    0                 0
##      0.0381424863643358                         0    0                 0
##      0.0395235614826762                         0    0                 0
##      0.0398504564629362                         0    0                 0
##      0.0449831541922517                         0    0                 0
##      0.150208567676068                          0    0                 0
##      0.291704657263826                          0    0                 0
##      0.31263158525612                           0    0                 0
##      0.313581394222809                          0    0                 0
##      0.399450114450523                          0    0                 0
##      0.419739887455571                          0    0                 0
##      0.425358901761228                          0    0                 0
##      0.594035429893685                          0    0                 0
##      0.671638488556335                          0    0                 0
##      0.688092298985074                          0    0                 0
##      0.806600378227794                          0    0                 0
##      0.867455094638368                          0    0                 0
##      0.897003448844096                          0    0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.289583333333333 0.371527777777778
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.409722222222222 0.416666666666667 0.5 0.55625
##      0.000000000123720820519974                 0                 0   0       0
##      0.0000000142143709248919                   0                 0   0       0
##      0.0000000203570784591136                   0                 0   0       0
##      0.0000000942663046181582                   0                 0   0       0
##      0.0381424863643358                         0                 0   0       0
##      0.0395235614826762                         0                 0   0       0
##      0.0398504564629362                         0                 0   0       0
##      0.0449831541922517                         0                 0   0       0
##      0.150208567676068                          0                 0   0       0
##      0.291704657263826                          0                 0   0       0
##      0.31263158525612                           0                 0   0       0
##      0.313581394222809                          0                 0   0       0
##      0.399450114450523                          0                 0   0       0
##      0.419739887455571                          0                 0   0       0
##      0.425358901761228                          0                 0   0       0
##      0.594035429893685                          0                 0   0       0
##      0.671638488556335                          0                 0   0       0
##      0.688092298985074                          0                 0   0       0
##      0.806600378227794                          0                 0   0       0
##      0.867455094638368                          0                 0   0       0
##      0.897003448844096                          0                 0   0       0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.639583333333333 0.907785087701754 1
##      0.000000000123720820519974                 0                 0 0
##      0.0000000142143709248919                   0                 0 0
##      0.0000000203570784591136                   0                 0 0
##      0.0000000942663046181582                   0                 0 0
##      0.0381424863643358                         0                 0 0
##      0.0395235614826762                         0                 0 0
##      0.0398504564629362                         0                 0 0
##      0.0449831541922517                         0                 0 0
##      0.150208567676068                          0                 0 0
##      0.291704657263826                          0                 0 0
##      0.31263158525612                           0                 0 0
##      0.313581394222809                          0                 0 0
##      0.399450114450523                          0                 0 0
##      0.419739887455571                          0                 0 0
##      0.425358901761228                          0                 0 0
##      0.594035429893685                          0                 0 0
##      0.671638488556335                          0                 0 0
##      0.688092298985074                          0                 0 0
##      0.806600378227794                          0                 0 0
##      0.867455094638368                          0                 0 0
##      0.897003448844096                          0                 0 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 1.34930555555556 4.020833333 6.15
##      0.000000000123720820519974                0           0    0
##      0.0000000142143709248919                  0           0    0
##      0.0000000203570784591136                  0           0    0
##      0.0000000942663046181582                  0           0    0
##      0.0381424863643358                        0           0    0
##      0.0395235614826762                        0           0    0
##      0.0398504564629362                        0           0    0
##      0.0449831541922517                        0           0    0
##      0.150208567676068                         0           0    0
##      0.291704657263826                         0           0    0
##      0.31263158525612                          0           0    0
##      0.313581394222809                         0           0    0
##      0.399450114450523                         0           0    0
##      0.419739887455571                         0           0    0
##      0.425358901761228                         0           0    0
##      0.594035429893685                         0           0    0
##      0.671638488556335                         0           0    0
##      0.688092298985074                         0           0    0
##      0.806600378227794                         0           0    0
##      0.867455094638368                         0           0    0
##      0.897003448844096                         0           0    0
## 
## , , OTT_Time = 0.5104166667, Snapchat_Time = 1, Instagram_Time = 0.156944444444444
## 
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.125 0.142361111111111 0.152777777777778
##      0.000000000123720820519974     0                 0                 0
##      0.0000000142143709248919       0                 0                 0
##      0.0000000203570784591136       0                 0                 0
##      0.0000000942663046181582       0                 0                 0
##      0.0381424863643358             0                 0                 0
##      0.0395235614826762             0                 0                 0
##      0.0398504564629362             0                 0                 0
##      0.0449831541922517             0                 0                 0
##      0.150208567676068              0                 0                 0
##      0.291704657263826              0                 0                 0
##      0.31263158525612               0                 0                 0
##      0.313581394222809              0                 0                 0
##      0.399450114450523              0                 0                 0
##      0.419739887455571              0                 0                 0
##      0.425358901761228              0                 0                 0
##      0.594035429893685              0                 0                 0
##      0.671638488556335              0                 0                 0
##      0.688092298985074              0                 0                 0
##      0.806600378227794              0                 0                 0
##      0.867455094638368              0                 0                 0
##      0.897003448844096              0                 0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.174305555555556 0.208333333333333
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.220833333333333 0.25 0.270833333333333
##      0.000000000123720820519974                 0    0                 0
##      0.0000000142143709248919                   0    0                 0
##      0.0000000203570784591136                   0    0                 0
##      0.0000000942663046181582                   0    0                 0
##      0.0381424863643358                         0    0                 0
##      0.0395235614826762                         0    0                 0
##      0.0398504564629362                         0    0                 0
##      0.0449831541922517                         0    0                 0
##      0.150208567676068                          0    0                 0
##      0.291704657263826                          0    0                 0
##      0.31263158525612                           0    0                 0
##      0.313581394222809                          0    0                 0
##      0.399450114450523                          0    0                 0
##      0.419739887455571                          0    0                 0
##      0.425358901761228                          0    0                 0
##      0.594035429893685                          0    0                 0
##      0.671638488556335                          0    0                 0
##      0.688092298985074                          0    0                 0
##      0.806600378227794                          0    0                 0
##      0.867455094638368                          0    0                 0
##      0.897003448844096                          0    0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.289583333333333 0.371527777777778
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.409722222222222 0.416666666666667 0.5 0.55625
##      0.000000000123720820519974                 0                 0   0       0
##      0.0000000142143709248919                   0                 0   0       0
##      0.0000000203570784591136                   0                 0   0       0
##      0.0000000942663046181582                   0                 0   0       0
##      0.0381424863643358                         0                 0   0       0
##      0.0395235614826762                         0                 0   0       0
##      0.0398504564629362                         0                 0   0       0
##      0.0449831541922517                         0                 0   0       0
##      0.150208567676068                          0                 0   0       0
##      0.291704657263826                          0                 0   0       0
##      0.31263158525612                           0                 0   0       0
##      0.313581394222809                          0                 0   0       0
##      0.399450114450523                          0                 0   0       0
##      0.419739887455571                          0                 0   0       0
##      0.425358901761228                          0                 0   0       0
##      0.594035429893685                          0                 0   0       0
##      0.671638488556335                          0                 0   0       0
##      0.688092298985074                          0                 0   0       0
##      0.806600378227794                          0                 0   0       0
##      0.867455094638368                          0                 0   0       0
##      0.897003448844096                          0                 0   0       0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.639583333333333 0.907785087701754 1
##      0.000000000123720820519974                 0                 0 0
##      0.0000000142143709248919                   0                 0 0
##      0.0000000203570784591136                   0                 0 0
##      0.0000000942663046181582                   0                 0 0
##      0.0381424863643358                         0                 0 0
##      0.0395235614826762                         0                 0 0
##      0.0398504564629362                         0                 0 0
##      0.0449831541922517                         0                 0 0
##      0.150208567676068                          0                 0 0
##      0.291704657263826                          0                 0 0
##      0.31263158525612                           0                 0 0
##      0.313581394222809                          0                 0 0
##      0.399450114450523                          0                 0 0
##      0.419739887455571                          0                 0 0
##      0.425358901761228                          0                 0 0
##      0.594035429893685                          0                 0 0
##      0.671638488556335                          0                 0 0
##      0.688092298985074                          0                 0 0
##      0.806600378227794                          0                 0 0
##      0.867455094638368                          0                 0 0
##      0.897003448844096                          0                 0 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 1.34930555555556 4.020833333 6.15
##      0.000000000123720820519974                0           0    0
##      0.0000000142143709248919                  0           0    0
##      0.0000000203570784591136                  0           0    0
##      0.0000000942663046181582                  0           0    0
##      0.0381424863643358                        0           0    0
##      0.0395235614826762                        0           0    0
##      0.0398504564629362                        0           0    0
##      0.0449831541922517                        0           0    0
##      0.150208567676068                         0           0    0
##      0.291704657263826                         0           0    0
##      0.31263158525612                          0           0    0
##      0.313581394222809                         0           0    0
##      0.399450114450523                         0           0    0
##      0.419739887455571                         0           0    0
##      0.425358901761228                         0           0    0
##      0.594035429893685                         0           0    0
##      0.671638488556335                         0           0    0
##      0.688092298985074                         0           0    0
##      0.806600378227794                         0           0    0
##      0.867455094638368                         0           0    0
##      0.897003448844096                         0           0    0
## 
## , , OTT_Time = 1.44460470085726, Snapchat_Time = 1, Instagram_Time = 0.156944444444444
## 
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.125 0.142361111111111 0.152777777777778
##      0.000000000123720820519974     0                 0                 0
##      0.0000000142143709248919       0                 0                 0
##      0.0000000203570784591136       0                 0                 0
##      0.0000000942663046181582       0                 0                 0
##      0.0381424863643358             0                 0                 0
##      0.0395235614826762             0                 0                 0
##      0.0398504564629362             0                 0                 0
##      0.0449831541922517             0                 0                 0
##      0.150208567676068              0                 0                 0
##      0.291704657263826              0                 0                 0
##      0.31263158525612               0                 0                 0
##      0.313581394222809              0                 0                 0
##      0.399450114450523              0                 0                 0
##      0.419739887455571              0                 0                 0
##      0.425358901761228              0                 0                 0
##      0.594035429893685              0                 0                 0
##      0.671638488556335              0                 0                 0
##      0.688092298985074              0                 0                 0
##      0.806600378227794              0                 0                 0
##      0.867455094638368              0                 0                 0
##      0.897003448844096              0                 0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.174305555555556 0.208333333333333
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.220833333333333 0.25 0.270833333333333
##      0.000000000123720820519974                 0    0                 0
##      0.0000000142143709248919                   0    0                 0
##      0.0000000203570784591136                   0    0                 0
##      0.0000000942663046181582                   0    0                 0
##      0.0381424863643358                         0    0                 0
##      0.0395235614826762                         0    0                 0
##      0.0398504564629362                         0    0                 0
##      0.0449831541922517                         0    0                 0
##      0.150208567676068                          0    0                 0
##      0.291704657263826                          0    0                 0
##      0.31263158525612                           0    0                 0
##      0.313581394222809                          0    0                 0
##      0.399450114450523                          0    0                 0
##      0.419739887455571                          0    0                 0
##      0.425358901761228                          0    0                 0
##      0.594035429893685                          0    0                 0
##      0.671638488556335                          0    0                 0
##      0.688092298985074                          0    0                 0
##      0.806600378227794                          0    0                 0
##      0.867455094638368                          0    0                 0
##      0.897003448844096                          0    0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.289583333333333 0.371527777777778
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.409722222222222 0.416666666666667 0.5 0.55625
##      0.000000000123720820519974                 0                 0   0       0
##      0.0000000142143709248919                   0                 0   0       0
##      0.0000000203570784591136                   0                 0   0       0
##      0.0000000942663046181582                   0                 0   0       0
##      0.0381424863643358                         0                 0   0       0
##      0.0395235614826762                         0                 0   0       0
##      0.0398504564629362                         0                 0   0       0
##      0.0449831541922517                         0                 0   0       0
##      0.150208567676068                          0                 0   0       0
##      0.291704657263826                          0                 0   0       0
##      0.31263158525612                           0                 0   0       0
##      0.313581394222809                          0                 0   0       0
##      0.399450114450523                          0                 0   0       0
##      0.419739887455571                          0                 0   0       0
##      0.425358901761228                          0                 0   0       0
##      0.594035429893685                          0                 0   0       0
##      0.671638488556335                          0                 0   0       0
##      0.688092298985074                          0                 0   0       0
##      0.806600378227794                          0                 0   0       0
##      0.867455094638368                          0                 0   0       0
##      0.897003448844096                          0                 0   0       0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.639583333333333 0.907785087701754 1
##      0.000000000123720820519974                 0                 0 0
##      0.0000000142143709248919                   0                 0 0
##      0.0000000203570784591136                   0                 0 0
##      0.0000000942663046181582                   0                 0 0
##      0.0381424863643358                         0                 0 0
##      0.0395235614826762                         0                 0 0
##      0.0398504564629362                         0                 0 0
##      0.0449831541922517                         0                 0 0
##      0.150208567676068                          0                 0 0
##      0.291704657263826                          0                 0 0
##      0.31263158525612                           0                 0 0
##      0.313581394222809                          0                 0 0
##      0.399450114450523                          0                 0 0
##      0.419739887455571                          0                 0 0
##      0.425358901761228                          0                 0 0
##      0.594035429893685                          0                 0 0
##      0.671638488556335                          0                 0 0
##      0.688092298985074                          0                 0 0
##      0.806600378227794                          0                 0 0
##      0.867455094638368                          0                 0 0
##      0.897003448844096                          0                 0 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 1.34930555555556 4.020833333 6.15
##      0.000000000123720820519974                0           0    0
##      0.0000000142143709248919                  0           0    0
##      0.0000000203570784591136                  0           0    0
##      0.0000000942663046181582                  0           0    0
##      0.0381424863643358                        0           0    0
##      0.0395235614826762                        0           0    0
##      0.0398504564629362                        0           0    0
##      0.0449831541922517                        0           0    0
##      0.150208567676068                         0           0    0
##      0.291704657263826                         0           0    0
##      0.31263158525612                          0           0    0
##      0.313581394222809                         0           0    0
##      0.399450114450523                         0           0    0
##      0.419739887455571                         0           0    0
##      0.425358901761228                         0           0    0
##      0.594035429893685                         0           0    0
##      0.671638488556335                         0           0    0
##      0.688092298985074                         0           0    0
##      0.806600378227794                         0           0    0
##      0.867455094638368                         0           0    0
##      0.897003448844096                         0           0    0
## 
## , , OTT_Time = 3, Snapchat_Time = 1, Instagram_Time = 0.156944444444444
## 
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.125 0.142361111111111 0.152777777777778
##      0.000000000123720820519974     0                 0                 0
##      0.0000000142143709248919       0                 0                 0
##      0.0000000203570784591136       0                 0                 0
##      0.0000000942663046181582       0                 0                 0
##      0.0381424863643358             0                 0                 0
##      0.0395235614826762             0                 0                 0
##      0.0398504564629362             0                 0                 0
##      0.0449831541922517             0                 0                 0
##      0.150208567676068              0                 0                 0
##      0.291704657263826              0                 0                 0
##      0.31263158525612               0                 0                 0
##      0.313581394222809              0                 0                 0
##      0.399450114450523              0                 0                 0
##      0.419739887455571              0                 0                 0
##      0.425358901761228              0                 0                 0
##      0.594035429893685              0                 0                 0
##      0.671638488556335              0                 0                 0
##      0.688092298985074              0                 0                 0
##      0.806600378227794              0                 0                 0
##      0.867455094638368              0                 0                 0
##      0.897003448844096              0                 0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.174305555555556 0.208333333333333
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.220833333333333 0.25 0.270833333333333
##      0.000000000123720820519974                 0    0                 0
##      0.0000000142143709248919                   0    0                 0
##      0.0000000203570784591136                   0    0                 0
##      0.0000000942663046181582                   0    0                 0
##      0.0381424863643358                         0    0                 0
##      0.0395235614826762                         0    0                 0
##      0.0398504564629362                         0    0                 0
##      0.0449831541922517                         0    0                 0
##      0.150208567676068                          0    0                 0
##      0.291704657263826                          0    0                 0
##      0.31263158525612                           0    0                 0
##      0.313581394222809                          0    0                 0
##      0.399450114450523                          0    0                 0
##      0.419739887455571                          0    0                 0
##      0.425358901761228                          0    0                 0
##      0.594035429893685                          0    0                 0
##      0.671638488556335                          0    0                 0
##      0.688092298985074                          0    0                 0
##      0.806600378227794                          0    0                 0
##      0.867455094638368                          0    0                 0
##      0.897003448844096                          0    0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.289583333333333 0.371527777777778
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.409722222222222 0.416666666666667 0.5 0.55625
##      0.000000000123720820519974                 0                 0   0       0
##      0.0000000142143709248919                   0                 0   0       0
##      0.0000000203570784591136                   0                 0   0       0
##      0.0000000942663046181582                   0                 0   0       0
##      0.0381424863643358                         0                 0   0       0
##      0.0395235614826762                         0                 0   0       0
##      0.0398504564629362                         0                 0   0       0
##      0.0449831541922517                         0                 0   0       0
##      0.150208567676068                          0                 0   0       0
##      0.291704657263826                          0                 0   0       0
##      0.31263158525612                           0                 0   0       0
##      0.313581394222809                          0                 0   0       0
##      0.399450114450523                          0                 0   0       0
##      0.419739887455571                          0                 0   0       0
##      0.425358901761228                          0                 0   0       0
##      0.594035429893685                          0                 0   0       0
##      0.671638488556335                          0                 0   0       0
##      0.688092298985074                          0                 0   0       0
##      0.806600378227794                          0                 0   0       0
##      0.867455094638368                          0                 0   0       0
##      0.897003448844096                          0                 0   0       0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.639583333333333 0.907785087701754 1
##      0.000000000123720820519974                 0                 0 0
##      0.0000000142143709248919                   0                 0 0
##      0.0000000203570784591136                   0                 0 0
##      0.0000000942663046181582                   0                 0 0
##      0.0381424863643358                         0                 0 0
##      0.0395235614826762                         0                 0 0
##      0.0398504564629362                         0                 0 0
##      0.0449831541922517                         0                 0 0
##      0.150208567676068                          0                 0 0
##      0.291704657263826                          0                 0 0
##      0.31263158525612                           0                 0 0
##      0.313581394222809                          0                 0 0
##      0.399450114450523                          0                 0 0
##      0.419739887455571                          0                 0 0
##      0.425358901761228                          0                 0 0
##      0.594035429893685                          0                 0 0
##      0.671638488556335                          0                 0 0
##      0.688092298985074                          0                 0 0
##      0.806600378227794                          0                 0 0
##      0.867455094638368                          0                 0 0
##      0.897003448844096                          0                 0 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 1.34930555555556 4.020833333 6.15
##      0.000000000123720820519974                0           0    0
##      0.0000000142143709248919                  0           0    0
##      0.0000000203570784591136                  0           0    0
##      0.0000000942663046181582                  0           0    0
##      0.0381424863643358                        0           0    0
##      0.0395235614826762                        0           0    0
##      0.0398504564629362                        0           0    0
##      0.0449831541922517                        0           0    0
##      0.150208567676068                         0           0    0
##      0.291704657263826                         0           0    0
##      0.31263158525612                          0           0    0
##      0.313581394222809                         0           0    0
##      0.399450114450523                         0           0    0
##      0.419739887455571                         0           0    0
##      0.425358901761228                         0           0    0
##      0.594035429893685                         0           0    0
##      0.671638488556335                         0           0    0
##      0.688092298985074                         0           0    0
##      0.806600378227794                         0           0    0
##      0.867455094638368                         0           0    0
##      0.897003448844096                         0           0    0
## 
## , , OTT_Time = 14.5, Snapchat_Time = 1, Instagram_Time = 0.156944444444444
## 
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.125 0.142361111111111 0.152777777777778
##      0.000000000123720820519974     0                 0                 0
##      0.0000000142143709248919       0                 0                 0
##      0.0000000203570784591136       0                 0                 0
##      0.0000000942663046181582       0                 0                 0
##      0.0381424863643358             0                 0                 0
##      0.0395235614826762             0                 0                 0
##      0.0398504564629362             0                 0                 0
##      0.0449831541922517             0                 0                 0
##      0.150208567676068              0                 0                 0
##      0.291704657263826              0                 0                 0
##      0.31263158525612               0                 0                 0
##      0.313581394222809              0                 0                 0
##      0.399450114450523              0                 0                 0
##      0.419739887455571              0                 0                 0
##      0.425358901761228              0                 0                 0
##      0.594035429893685              0                 0                 0
##      0.671638488556335              0                 0                 0
##      0.688092298985074              0                 0                 0
##      0.806600378227794              0                 0                 0
##      0.867455094638368              0                 0                 0
##      0.897003448844096              0                 0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.174305555555556 0.208333333333333
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.220833333333333 0.25 0.270833333333333
##      0.000000000123720820519974                 0    0                 0
##      0.0000000142143709248919                   0    0                 0
##      0.0000000203570784591136                   0    0                 0
##      0.0000000942663046181582                   0    0                 0
##      0.0381424863643358                         0    0                 0
##      0.0395235614826762                         0    0                 0
##      0.0398504564629362                         0    0                 0
##      0.0449831541922517                         0    0                 0
##      0.150208567676068                          0    0                 0
##      0.291704657263826                          0    0                 0
##      0.31263158525612                           0    0                 0
##      0.313581394222809                          0    0                 0
##      0.399450114450523                          0    0                 0
##      0.419739887455571                          0    0                 0
##      0.425358901761228                          0    0                 0
##      0.594035429893685                          0    0                 0
##      0.671638488556335                          0    0                 0
##      0.688092298985074                          0    0                 0
##      0.806600378227794                          0    0                 0
##      0.867455094638368                          0    0                 0
##      0.897003448844096                          0    0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.289583333333333 0.371527777777778
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.409722222222222 0.416666666666667 0.5 0.55625
##      0.000000000123720820519974                 0                 0   0       0
##      0.0000000142143709248919                   0                 0   0       0
##      0.0000000203570784591136                   0                 0   0       0
##      0.0000000942663046181582                   0                 0   0       0
##      0.0381424863643358                         0                 0   0       0
##      0.0395235614826762                         0                 0   0       0
##      0.0398504564629362                         0                 0   0       0
##      0.0449831541922517                         0                 0   0       0
##      0.150208567676068                          0                 0   0       0
##      0.291704657263826                          0                 0   0       0
##      0.31263158525612                           0                 0   0       0
##      0.313581394222809                          0                 0   0       0
##      0.399450114450523                          0                 0   0       0
##      0.419739887455571                          0                 0   0       0
##      0.425358901761228                          0                 0   0       0
##      0.594035429893685                          0                 0   0       0
##      0.671638488556335                          0                 0   0       0
##      0.688092298985074                          0                 0   0       0
##      0.806600378227794                          0                 0   0       0
##      0.867455094638368                          0                 0   0       0
##      0.897003448844096                          0                 0   0       0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.639583333333333 0.907785087701754 1
##      0.000000000123720820519974                 0                 0 0
##      0.0000000142143709248919                   0                 0 0
##      0.0000000203570784591136                   0                 0 0
##      0.0000000942663046181582                   0                 0 0
##      0.0381424863643358                         0                 0 0
##      0.0395235614826762                         0                 0 0
##      0.0398504564629362                         0                 0 0
##      0.0449831541922517                         0                 0 0
##      0.150208567676068                          0                 0 0
##      0.291704657263826                          0                 0 0
##      0.31263158525612                           0                 0 0
##      0.313581394222809                          0                 0 0
##      0.399450114450523                          0                 0 0
##      0.419739887455571                          0                 0 0
##      0.425358901761228                          0                 0 0
##      0.594035429893685                          0                 0 0
##      0.671638488556335                          0                 0 0
##      0.688092298985074                          0                 0 0
##      0.806600378227794                          0                 0 0
##      0.867455094638368                          0                 0 0
##      0.897003448844096                          0                 0 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 1.34930555555556 4.020833333 6.15
##      0.000000000123720820519974                0           0    0
##      0.0000000142143709248919                  0           0    0
##      0.0000000203570784591136                  0           0    0
##      0.0000000942663046181582                  0           0    0
##      0.0381424863643358                        0           0    0
##      0.0395235614826762                        0           0    0
##      0.0398504564629362                        0           0    0
##      0.0449831541922517                        0           0    0
##      0.150208567676068                         0           0    0
##      0.291704657263826                         0           0    0
##      0.31263158525612                          0           0    0
##      0.313581394222809                         0           0    0
##      0.399450114450523                         0           0    0
##      0.419739887455571                         0           0    0
##      0.425358901761228                         0           0    0
##      0.594035429893685                         0           0    0
##      0.671638488556335                         0           0    0
##      0.688092298985074                         0           0    0
##      0.806600378227794                         0           0    0
##      0.867455094638368                         0           0    0
##      0.897003448844096                         0           0    0
## 
## , , OTT_Time = 0, Snapchat_Time = 3.83333333333333, Instagram_Time = 0.156944444444444
## 
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.125 0.142361111111111 0.152777777777778
##      0.000000000123720820519974     0                 0                 0
##      0.0000000142143709248919       0                 0                 0
##      0.0000000203570784591136       0                 0                 0
##      0.0000000942663046181582       0                 0                 0
##      0.0381424863643358             0                 0                 0
##      0.0395235614826762             0                 0                 0
##      0.0398504564629362             0                 0                 0
##      0.0449831541922517             0                 0                 0
##      0.150208567676068              0                 0                 0
##      0.291704657263826              0                 0                 0
##      0.31263158525612               0                 0                 0
##      0.313581394222809              0                 0                 0
##      0.399450114450523              0                 0                 0
##      0.419739887455571              0                 0                 0
##      0.425358901761228              0                 0                 0
##      0.594035429893685              0                 0                 0
##      0.671638488556335              0                 0                 0
##      0.688092298985074              0                 0                 0
##      0.806600378227794              0                 0                 0
##      0.867455094638368              0                 0                 0
##      0.897003448844096              0                 0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.174305555555556 0.208333333333333
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.220833333333333 0.25 0.270833333333333
##      0.000000000123720820519974                 0    0                 0
##      0.0000000142143709248919                   0    0                 0
##      0.0000000203570784591136                   0    0                 0
##      0.0000000942663046181582                   0    0                 0
##      0.0381424863643358                         0    0                 0
##      0.0395235614826762                         0    0                 0
##      0.0398504564629362                         0    0                 0
##      0.0449831541922517                         0    0                 0
##      0.150208567676068                          0    0                 0
##      0.291704657263826                          0    0                 0
##      0.31263158525612                           0    0                 0
##      0.313581394222809                          0    0                 0
##      0.399450114450523                          0    0                 0
##      0.419739887455571                          0    0                 0
##      0.425358901761228                          0    0                 0
##      0.594035429893685                          0    0                 0
##      0.671638488556335                          0    0                 0
##      0.688092298985074                          0    0                 0
##      0.806600378227794                          0    0                 0
##      0.867455094638368                          0    0                 0
##      0.897003448844096                          0    0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.289583333333333 0.371527777777778
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.409722222222222 0.416666666666667 0.5 0.55625
##      0.000000000123720820519974                 0                 0   0       0
##      0.0000000142143709248919                   0                 0   0       0
##      0.0000000203570784591136                   0                 0   0       0
##      0.0000000942663046181582                   0                 0   0       0
##      0.0381424863643358                         0                 0   0       0
##      0.0395235614826762                         0                 0   0       0
##      0.0398504564629362                         0                 0   0       0
##      0.0449831541922517                         0                 0   0       0
##      0.150208567676068                          0                 0   0       0
##      0.291704657263826                          0                 0   0       0
##      0.31263158525612                           0                 0   0       0
##      0.313581394222809                          0                 0   0       0
##      0.399450114450523                          0                 0   0       0
##      0.419739887455571                          0                 0   0       0
##      0.425358901761228                          0                 0   0       0
##      0.594035429893685                          0                 0   0       0
##      0.671638488556335                          0                 0   0       0
##      0.688092298985074                          0                 0   0       0
##      0.806600378227794                          0                 0   0       0
##      0.867455094638368                          0                 0   0       0
##      0.897003448844096                          0                 0   0       0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.639583333333333 0.907785087701754 1
##      0.000000000123720820519974                 0                 0 0
##      0.0000000142143709248919                   0                 0 0
##      0.0000000203570784591136                   0                 0 0
##      0.0000000942663046181582                   0                 0 0
##      0.0381424863643358                         0                 0 0
##      0.0395235614826762                         0                 0 0
##      0.0398504564629362                         0                 0 0
##      0.0449831541922517                         0                 0 0
##      0.150208567676068                          0                 0 0
##      0.291704657263826                          0                 0 0
##      0.31263158525612                           0                 0 0
##      0.313581394222809                          0                 0 0
##      0.399450114450523                          0                 0 0
##      0.419739887455571                          0                 0 0
##      0.425358901761228                          0                 0 0
##      0.594035429893685                          0                 0 0
##      0.671638488556335                          0                 0 0
##      0.688092298985074                          0                 0 0
##      0.806600378227794                          0                 0 0
##      0.867455094638368                          0                 0 0
##      0.897003448844096                          0                 0 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 1.34930555555556 4.020833333 6.15
##      0.000000000123720820519974                0           0    0
##      0.0000000142143709248919                  0           0    0
##      0.0000000203570784591136                  0           0    0
##      0.0000000942663046181582                  0           0    0
##      0.0381424863643358                        0           0    0
##      0.0395235614826762                        0           0    0
##      0.0398504564629362                        0           0    0
##      0.0449831541922517                        0           0    0
##      0.150208567676068                         0           0    0
##      0.291704657263826                         0           0    0
##      0.31263158525612                          0           0    0
##      0.313581394222809                         0           0    0
##      0.399450114450523                         0           0    0
##      0.419739887455571                         0           0    0
##      0.425358901761228                         0           0    0
##      0.594035429893685                         0           0    0
##      0.671638488556335                         0           0    0
##      0.688092298985074                         0           0    0
##      0.806600378227794                         0           0    0
##      0.867455094638368                         0           0    0
##      0.897003448844096                         0           0    0
## 
## , , OTT_Time = 0.102777777777778, Snapchat_Time = 3.83333333333333, Instagram_Time = 0.156944444444444
## 
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.125 0.142361111111111 0.152777777777778
##      0.000000000123720820519974     0                 0                 0
##      0.0000000142143709248919       0                 0                 0
##      0.0000000203570784591136       0                 0                 0
##      0.0000000942663046181582       0                 0                 0
##      0.0381424863643358             0                 0                 0
##      0.0395235614826762             0                 0                 0
##      0.0398504564629362             0                 0                 0
##      0.0449831541922517             0                 0                 0
##      0.150208567676068              0                 0                 0
##      0.291704657263826              0                 0                 0
##      0.31263158525612               0                 0                 0
##      0.313581394222809              0                 0                 0
##      0.399450114450523              0                 0                 0
##      0.419739887455571              0                 0                 0
##      0.425358901761228              0                 0                 0
##      0.594035429893685              0                 0                 0
##      0.671638488556335              0                 0                 0
##      0.688092298985074              0                 0                 0
##      0.806600378227794              0                 0                 0
##      0.867455094638368              0                 0                 0
##      0.897003448844096              0                 0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.174305555555556 0.208333333333333
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.220833333333333 0.25 0.270833333333333
##      0.000000000123720820519974                 0    0                 0
##      0.0000000142143709248919                   0    0                 0
##      0.0000000203570784591136                   0    0                 0
##      0.0000000942663046181582                   0    0                 0
##      0.0381424863643358                         0    0                 0
##      0.0395235614826762                         0    0                 0
##      0.0398504564629362                         0    0                 0
##      0.0449831541922517                         0    0                 0
##      0.150208567676068                          0    0                 0
##      0.291704657263826                          0    0                 0
##      0.31263158525612                           0    0                 0
##      0.313581394222809                          0    0                 0
##      0.399450114450523                          0    0                 0
##      0.419739887455571                          0    0                 0
##      0.425358901761228                          0    0                 0
##      0.594035429893685                          0    0                 0
##      0.671638488556335                          0    0                 0
##      0.688092298985074                          0    0                 0
##      0.806600378227794                          0    0                 0
##      0.867455094638368                          0    0                 0
##      0.897003448844096                          0    0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.289583333333333 0.371527777777778
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.409722222222222 0.416666666666667 0.5 0.55625
##      0.000000000123720820519974                 0                 0   0       0
##      0.0000000142143709248919                   0                 0   0       0
##      0.0000000203570784591136                   0                 0   0       0
##      0.0000000942663046181582                   0                 0   0       0
##      0.0381424863643358                         0                 0   0       0
##      0.0395235614826762                         0                 0   0       0
##      0.0398504564629362                         0                 0   0       0
##      0.0449831541922517                         0                 0   0       0
##      0.150208567676068                          0                 0   0       0
##      0.291704657263826                          0                 0   0       0
##      0.31263158525612                           0                 0   0       0
##      0.313581394222809                          0                 0   0       0
##      0.399450114450523                          0                 0   0       0
##      0.419739887455571                          0                 0   0       0
##      0.425358901761228                          0                 0   0       0
##      0.594035429893685                          0                 0   0       0
##      0.671638488556335                          0                 0   0       0
##      0.688092298985074                          0                 0   0       0
##      0.806600378227794                          0                 0   0       0
##      0.867455094638368                          0                 0   0       0
##      0.897003448844096                          0                 0   0       0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.639583333333333 0.907785087701754 1
##      0.000000000123720820519974                 0                 0 0
##      0.0000000142143709248919                   0                 0 0
##      0.0000000203570784591136                   0                 0 0
##      0.0000000942663046181582                   0                 0 0
##      0.0381424863643358                         0                 0 0
##      0.0395235614826762                         0                 0 0
##      0.0398504564629362                         0                 0 0
##      0.0449831541922517                         0                 0 0
##      0.150208567676068                          0                 0 0
##      0.291704657263826                          0                 0 0
##      0.31263158525612                           0                 0 0
##      0.313581394222809                          0                 0 0
##      0.399450114450523                          0                 0 0
##      0.419739887455571                          0                 0 0
##      0.425358901761228                          0                 0 0
##      0.594035429893685                          0                 0 0
##      0.671638488556335                          0                 0 0
##      0.688092298985074                          0                 0 0
##      0.806600378227794                          0                 0 0
##      0.867455094638368                          0                 0 0
##      0.897003448844096                          0                 0 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 1.34930555555556 4.020833333 6.15
##      0.000000000123720820519974                0           0    0
##      0.0000000142143709248919                  0           0    0
##      0.0000000203570784591136                  0           0    0
##      0.0000000942663046181582                  0           0    0
##      0.0381424863643358                        0           0    0
##      0.0395235614826762                        0           0    0
##      0.0398504564629362                        0           0    0
##      0.0449831541922517                        0           0    0
##      0.150208567676068                         0           0    0
##      0.291704657263826                         0           0    0
##      0.31263158525612                          0           0    0
##      0.313581394222809                         0           0    0
##      0.399450114450523                         0           0    0
##      0.419739887455571                         0           0    0
##      0.425358901761228                         0           0    0
##      0.594035429893685                         0           0    0
##      0.671638488556335                         0           0    0
##      0.688092298985074                         0           0    0
##      0.806600378227794                         0           0    0
##      0.867455094638368                         0           0    0
##      0.897003448844096                         0           0    0
## 
## , , OTT_Time = 0.125, Snapchat_Time = 3.83333333333333, Instagram_Time = 0.156944444444444
## 
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.125 0.142361111111111 0.152777777777778
##      0.000000000123720820519974     0                 0                 0
##      0.0000000142143709248919       0                 0                 0
##      0.0000000203570784591136       0                 0                 0
##      0.0000000942663046181582       0                 0                 0
##      0.0381424863643358             0                 0                 0
##      0.0395235614826762             0                 0                 0
##      0.0398504564629362             0                 0                 0
##      0.0449831541922517             0                 0                 0
##      0.150208567676068              0                 0                 0
##      0.291704657263826              0                 0                 0
##      0.31263158525612               0                 0                 0
##      0.313581394222809              0                 0                 0
##      0.399450114450523              0                 0                 0
##      0.419739887455571              0                 0                 0
##      0.425358901761228              0                 0                 0
##      0.594035429893685              0                 0                 0
##      0.671638488556335              0                 0                 0
##      0.688092298985074              0                 0                 0
##      0.806600378227794              0                 0                 0
##      0.867455094638368              0                 0                 0
##      0.897003448844096              0                 0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.174305555555556 0.208333333333333
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.220833333333333 0.25 0.270833333333333
##      0.000000000123720820519974                 0    0                 0
##      0.0000000142143709248919                   0    0                 0
##      0.0000000203570784591136                   0    0                 0
##      0.0000000942663046181582                   0    0                 0
##      0.0381424863643358                         0    0                 0
##      0.0395235614826762                         0    0                 0
##      0.0398504564629362                         0    0                 0
##      0.0449831541922517                         0    0                 0
##      0.150208567676068                          0    0                 0
##      0.291704657263826                          0    0                 0
##      0.31263158525612                           0    0                 0
##      0.313581394222809                          0    0                 0
##      0.399450114450523                          0    0                 0
##      0.419739887455571                          0    0                 0
##      0.425358901761228                          0    0                 0
##      0.594035429893685                          0    0                 0
##      0.671638488556335                          0    0                 0
##      0.688092298985074                          0    0                 0
##      0.806600378227794                          0    0                 0
##      0.867455094638368                          0    0                 0
##      0.897003448844096                          0    0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.289583333333333 0.371527777777778
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.409722222222222 0.416666666666667 0.5 0.55625
##      0.000000000123720820519974                 0                 0   0       0
##      0.0000000142143709248919                   0                 0   0       0
##      0.0000000203570784591136                   0                 0   0       0
##      0.0000000942663046181582                   0                 0   0       0
##      0.0381424863643358                         0                 0   0       0
##      0.0395235614826762                         0                 0   0       0
##      0.0398504564629362                         0                 0   0       0
##      0.0449831541922517                         0                 0   0       0
##      0.150208567676068                          0                 0   0       0
##      0.291704657263826                          0                 0   0       0
##      0.31263158525612                           0                 0   0       0
##      0.313581394222809                          0                 0   0       0
##      0.399450114450523                          0                 0   0       0
##      0.419739887455571                          0                 0   0       0
##      0.425358901761228                          0                 0   0       0
##      0.594035429893685                          0                 0   0       0
##      0.671638488556335                          0                 0   0       0
##      0.688092298985074                          0                 0   0       0
##      0.806600378227794                          0                 0   0       0
##      0.867455094638368                          0                 0   0       0
##      0.897003448844096                          0                 0   0       0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.639583333333333 0.907785087701754 1
##      0.000000000123720820519974                 0                 0 0
##      0.0000000142143709248919                   0                 0 0
##      0.0000000203570784591136                   0                 0 0
##      0.0000000942663046181582                   0                 0 0
##      0.0381424863643358                         0                 0 0
##      0.0395235614826762                         0                 0 0
##      0.0398504564629362                         0                 0 0
##      0.0449831541922517                         0                 0 0
##      0.150208567676068                          0                 0 0
##      0.291704657263826                          0                 0 0
##      0.31263158525612                           0                 0 0
##      0.313581394222809                          0                 0 0
##      0.399450114450523                          0                 0 0
##      0.419739887455571                          0                 0 0
##      0.425358901761228                          0                 0 0
##      0.594035429893685                          0                 0 0
##      0.671638488556335                          0                 0 0
##      0.688092298985074                          0                 0 0
##      0.806600378227794                          0                 0 0
##      0.867455094638368                          0                 0 0
##      0.897003448844096                          0                 0 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 1.34930555555556 4.020833333 6.15
##      0.000000000123720820519974                0           0    0
##      0.0000000142143709248919                  0           0    0
##      0.0000000203570784591136                  0           0    0
##      0.0000000942663046181582                  0           0    0
##      0.0381424863643358                        0           0    0
##      0.0395235614826762                        0           0    0
##      0.0398504564629362                        0           0    0
##      0.0449831541922517                        0           0    0
##      0.150208567676068                         0           0    0
##      0.291704657263826                         0           0    0
##      0.31263158525612                          0           0    0
##      0.313581394222809                         0           0    0
##      0.399450114450523                         0           0    0
##      0.419739887455571                         0           0    0
##      0.425358901761228                         0           0    0
##      0.594035429893685                         0           0    0
##      0.671638488556335                         0           0    0
##      0.688092298985074                         0           0    0
##      0.806600378227794                         0           0    0
##      0.867455094638368                         0           0    0
##      0.897003448844096                         0           0    0
## 
## , , OTT_Time = 0.416666666666667, Snapchat_Time = 3.83333333333333, Instagram_Time = 0.156944444444444
## 
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.125 0.142361111111111 0.152777777777778
##      0.000000000123720820519974     0                 0                 0
##      0.0000000142143709248919       0                 0                 0
##      0.0000000203570784591136       0                 0                 0
##      0.0000000942663046181582       0                 0                 0
##      0.0381424863643358             0                 0                 0
##      0.0395235614826762             0                 0                 0
##      0.0398504564629362             0                 0                 0
##      0.0449831541922517             0                 0                 0
##      0.150208567676068              0                 0                 0
##      0.291704657263826              0                 0                 0
##      0.31263158525612               0                 0                 0
##      0.313581394222809              0                 0                 0
##      0.399450114450523              0                 0                 0
##      0.419739887455571              0                 0                 0
##      0.425358901761228              0                 0                 0
##      0.594035429893685              0                 0                 0
##      0.671638488556335              0                 0                 0
##      0.688092298985074              0                 0                 0
##      0.806600378227794              0                 0                 0
##      0.867455094638368              0                 0                 0
##      0.897003448844096              0                 0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.174305555555556 0.208333333333333
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.220833333333333 0.25 0.270833333333333
##      0.000000000123720820519974                 0    0                 0
##      0.0000000142143709248919                   0    0                 0
##      0.0000000203570784591136                   0    0                 0
##      0.0000000942663046181582                   0    0                 0
##      0.0381424863643358                         0    0                 0
##      0.0395235614826762                         0    0                 0
##      0.0398504564629362                         0    0                 0
##      0.0449831541922517                         0    0                 0
##      0.150208567676068                          0    0                 0
##      0.291704657263826                          0    0                 0
##      0.31263158525612                           0    0                 0
##      0.313581394222809                          0    0                 0
##      0.399450114450523                          0    0                 0
##      0.419739887455571                          0    0                 0
##      0.425358901761228                          0    0                 0
##      0.594035429893685                          0    0                 0
##      0.671638488556335                          0    0                 0
##      0.688092298985074                          0    0                 0
##      0.806600378227794                          0    0                 0
##      0.867455094638368                          0    0                 0
##      0.897003448844096                          0    0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.289583333333333 0.371527777777778
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.409722222222222 0.416666666666667 0.5 0.55625
##      0.000000000123720820519974                 0                 0   0       0
##      0.0000000142143709248919                   0                 0   0       0
##      0.0000000203570784591136                   0                 0   0       0
##      0.0000000942663046181582                   0                 0   0       0
##      0.0381424863643358                         0                 0   0       0
##      0.0395235614826762                         0                 0   0       0
##      0.0398504564629362                         0                 0   0       0
##      0.0449831541922517                         0                 0   0       0
##      0.150208567676068                          0                 0   0       0
##      0.291704657263826                          0                 0   0       0
##      0.31263158525612                           0                 0   0       0
##      0.313581394222809                          0                 0   0       0
##      0.399450114450523                          0                 0   0       0
##      0.419739887455571                          0                 0   0       0
##      0.425358901761228                          0                 0   0       0
##      0.594035429893685                          0                 0   0       0
##      0.671638488556335                          0                 0   0       0
##      0.688092298985074                          0                 0   0       0
##      0.806600378227794                          0                 0   0       0
##      0.867455094638368                          0                 0   0       0
##      0.897003448844096                          0                 0   0       0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.639583333333333 0.907785087701754 1
##      0.000000000123720820519974                 0                 0 0
##      0.0000000142143709248919                   0                 0 0
##      0.0000000203570784591136                   0                 0 0
##      0.0000000942663046181582                   0                 0 0
##      0.0381424863643358                         0                 0 0
##      0.0395235614826762                         0                 0 0
##      0.0398504564629362                         0                 0 0
##      0.0449831541922517                         0                 0 0
##      0.150208567676068                          0                 0 0
##      0.291704657263826                          0                 0 0
##      0.31263158525612                           0                 0 0
##      0.313581394222809                          0                 0 0
##      0.399450114450523                          0                 0 0
##      0.419739887455571                          0                 0 0
##      0.425358901761228                          0                 0 0
##      0.594035429893685                          0                 0 0
##      0.671638488556335                          0                 0 0
##      0.688092298985074                          0                 0 0
##      0.806600378227794                          0                 0 0
##      0.867455094638368                          0                 0 0
##      0.897003448844096                          0                 0 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 1.34930555555556 4.020833333 6.15
##      0.000000000123720820519974                0           0    0
##      0.0000000142143709248919                  0           0    0
##      0.0000000203570784591136                  0           0    0
##      0.0000000942663046181582                  0           0    0
##      0.0381424863643358                        0           0    0
##      0.0395235614826762                        0           0    0
##      0.0398504564629362                        0           0    0
##      0.0449831541922517                        0           0    0
##      0.150208567676068                         0           0    0
##      0.291704657263826                         0           0    0
##      0.31263158525612                          0           0    0
##      0.313581394222809                         0           0    0
##      0.399450114450523                         0           0    0
##      0.419739887455571                         0           0    0
##      0.425358901761228                         0           0    0
##      0.594035429893685                         0           0    0
##      0.671638488556335                         0           0    0
##      0.688092298985074                         0           0    0
##      0.806600378227794                         0           0    0
##      0.867455094638368                         0           0    0
##      0.897003448844096                         0           0    0
## 
## , , OTT_Time = 0.5104166667, Snapchat_Time = 3.83333333333333, Instagram_Time = 0.156944444444444
## 
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.125 0.142361111111111 0.152777777777778
##      0.000000000123720820519974     0                 0                 0
##      0.0000000142143709248919       0                 0                 0
##      0.0000000203570784591136       0                 0                 0
##      0.0000000942663046181582       0                 0                 0
##      0.0381424863643358             0                 0                 0
##      0.0395235614826762             0                 0                 0
##      0.0398504564629362             0                 0                 0
##      0.0449831541922517             0                 0                 0
##      0.150208567676068              0                 0                 0
##      0.291704657263826              0                 0                 0
##      0.31263158525612               0                 0                 0
##      0.313581394222809              0                 0                 0
##      0.399450114450523              0                 0                 0
##      0.419739887455571              0                 0                 0
##      0.425358901761228              0                 0                 0
##      0.594035429893685              0                 0                 0
##      0.671638488556335              0                 0                 0
##      0.688092298985074              0                 0                 0
##      0.806600378227794              0                 0                 0
##      0.867455094638368              0                 0                 0
##      0.897003448844096              0                 0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.174305555555556 0.208333333333333
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.220833333333333 0.25 0.270833333333333
##      0.000000000123720820519974                 0    0                 0
##      0.0000000142143709248919                   0    0                 0
##      0.0000000203570784591136                   0    0                 0
##      0.0000000942663046181582                   0    0                 0
##      0.0381424863643358                         0    0                 0
##      0.0395235614826762                         0    0                 0
##      0.0398504564629362                         0    0                 0
##      0.0449831541922517                         0    0                 0
##      0.150208567676068                          0    0                 0
##      0.291704657263826                          0    0                 0
##      0.31263158525612                           0    0                 0
##      0.313581394222809                          0    0                 0
##      0.399450114450523                          0    0                 0
##      0.419739887455571                          0    0                 0
##      0.425358901761228                          0    0                 0
##      0.594035429893685                          0    0                 0
##      0.671638488556335                          0    0                 0
##      0.688092298985074                          0    0                 0
##      0.806600378227794                          0    0                 0
##      0.867455094638368                          0    0                 0
##      0.897003448844096                          0    0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.289583333333333 0.371527777777778
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.409722222222222 0.416666666666667 0.5 0.55625
##      0.000000000123720820519974                 0                 0   0       0
##      0.0000000142143709248919                   0                 0   0       0
##      0.0000000203570784591136                   0                 0   0       0
##      0.0000000942663046181582                   0                 0   0       0
##      0.0381424863643358                         0                 0   0       0
##      0.0395235614826762                         0                 0   0       0
##      0.0398504564629362                         0                 0   0       0
##      0.0449831541922517                         0                 0   0       0
##      0.150208567676068                          0                 0   0       0
##      0.291704657263826                          0                 0   0       0
##      0.31263158525612                           0                 0   0       0
##      0.313581394222809                          0                 0   0       0
##      0.399450114450523                          0                 0   0       0
##      0.419739887455571                          0                 0   0       0
##      0.425358901761228                          0                 0   0       0
##      0.594035429893685                          0                 0   0       0
##      0.671638488556335                          0                 0   0       0
##      0.688092298985074                          0                 0   0       0
##      0.806600378227794                          0                 0   0       0
##      0.867455094638368                          0                 0   0       0
##      0.897003448844096                          0                 0   0       0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.639583333333333 0.907785087701754 1
##      0.000000000123720820519974                 0                 0 0
##      0.0000000142143709248919                   0                 0 0
##      0.0000000203570784591136                   0                 0 0
##      0.0000000942663046181582                   0                 0 0
##      0.0381424863643358                         0                 0 0
##      0.0395235614826762                         0                 0 0
##      0.0398504564629362                         0                 0 0
##      0.0449831541922517                         0                 0 0
##      0.150208567676068                          0                 0 0
##      0.291704657263826                          0                 0 0
##      0.31263158525612                           0                 0 0
##      0.313581394222809                          0                 0 0
##      0.399450114450523                          0                 0 0
##      0.419739887455571                          0                 0 0
##      0.425358901761228                          0                 0 0
##      0.594035429893685                          0                 0 0
##      0.671638488556335                          0                 0 0
##      0.688092298985074                          0                 0 0
##      0.806600378227794                          0                 0 0
##      0.867455094638368                          0                 0 0
##      0.897003448844096                          0                 0 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 1.34930555555556 4.020833333 6.15
##      0.000000000123720820519974                0           0    0
##      0.0000000142143709248919                  0           0    0
##      0.0000000203570784591136                  0           0    0
##      0.0000000942663046181582                  0           0    0
##      0.0381424863643358                        0           0    0
##      0.0395235614826762                        0           0    0
##      0.0398504564629362                        0           0    0
##      0.0449831541922517                        0           0    0
##      0.150208567676068                         0           0    0
##      0.291704657263826                         0           0    0
##      0.31263158525612                          0           0    0
##      0.313581394222809                         0           0    0
##      0.399450114450523                         0           0    0
##      0.419739887455571                         0           0    0
##      0.425358901761228                         0           0    0
##      0.594035429893685                         0           0    0
##      0.671638488556335                         0           0    0
##      0.688092298985074                         0           0    0
##      0.806600378227794                         0           0    0
##      0.867455094638368                         0           0    0
##      0.897003448844096                         0           0    0
## 
## , , OTT_Time = 1.44460470085726, Snapchat_Time = 3.83333333333333, Instagram_Time = 0.156944444444444
## 
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.125 0.142361111111111 0.152777777777778
##      0.000000000123720820519974     0                 0                 0
##      0.0000000142143709248919       0                 0                 0
##      0.0000000203570784591136       0                 0                 0
##      0.0000000942663046181582       0                 0                 0
##      0.0381424863643358             0                 0                 0
##      0.0395235614826762             0                 0                 0
##      0.0398504564629362             0                 0                 0
##      0.0449831541922517             0                 0                 0
##      0.150208567676068              0                 0                 0
##      0.291704657263826              0                 0                 0
##      0.31263158525612               0                 0                 0
##      0.313581394222809              0                 0                 0
##      0.399450114450523              0                 0                 0
##      0.419739887455571              0                 0                 0
##      0.425358901761228              0                 0                 0
##      0.594035429893685              0                 0                 0
##      0.671638488556335              0                 0                 0
##      0.688092298985074              0                 0                 0
##      0.806600378227794              0                 0                 0
##      0.867455094638368              0                 0                 0
##      0.897003448844096              0                 0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.174305555555556 0.208333333333333
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.220833333333333 0.25 0.270833333333333
##      0.000000000123720820519974                 0    0                 0
##      0.0000000142143709248919                   0    0                 0
##      0.0000000203570784591136                   0    0                 0
##      0.0000000942663046181582                   0    0                 0
##      0.0381424863643358                         0    0                 0
##      0.0395235614826762                         0    0                 0
##      0.0398504564629362                         0    0                 0
##      0.0449831541922517                         0    0                 0
##      0.150208567676068                          0    0                 0
##      0.291704657263826                          0    0                 0
##      0.31263158525612                           0    0                 0
##      0.313581394222809                          0    0                 0
##      0.399450114450523                          0    0                 0
##      0.419739887455571                          0    0                 0
##      0.425358901761228                          0    0                 0
##      0.594035429893685                          0    0                 0
##      0.671638488556335                          0    0                 0
##      0.688092298985074                          0    0                 0
##      0.806600378227794                          0    0                 0
##      0.867455094638368                          0    0                 0
##      0.897003448844096                          0    0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.289583333333333 0.371527777777778
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.409722222222222 0.416666666666667 0.5 0.55625
##      0.000000000123720820519974                 0                 0   0       0
##      0.0000000142143709248919                   0                 0   0       0
##      0.0000000203570784591136                   0                 0   0       0
##      0.0000000942663046181582                   0                 0   0       0
##      0.0381424863643358                         0                 0   0       0
##      0.0395235614826762                         0                 0   0       0
##      0.0398504564629362                         0                 0   0       0
##      0.0449831541922517                         0                 0   0       0
##      0.150208567676068                          0                 0   0       0
##      0.291704657263826                          0                 0   0       0
##      0.31263158525612                           0                 0   0       0
##      0.313581394222809                          0                 0   0       0
##      0.399450114450523                          0                 0   0       0
##      0.419739887455571                          0                 0   0       0
##      0.425358901761228                          0                 0   0       0
##      0.594035429893685                          0                 0   0       0
##      0.671638488556335                          0                 0   0       0
##      0.688092298985074                          0                 0   0       0
##      0.806600378227794                          0                 0   0       0
##      0.867455094638368                          0                 0   0       0
##      0.897003448844096                          0                 0   0       0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.639583333333333 0.907785087701754 1
##      0.000000000123720820519974                 0                 0 0
##      0.0000000142143709248919                   0                 0 0
##      0.0000000203570784591136                   0                 0 0
##      0.0000000942663046181582                   0                 0 0
##      0.0381424863643358                         0                 0 0
##      0.0395235614826762                         0                 0 0
##      0.0398504564629362                         0                 0 0
##      0.0449831541922517                         0                 0 0
##      0.150208567676068                          0                 0 0
##      0.291704657263826                          0                 0 0
##      0.31263158525612                           0                 0 0
##      0.313581394222809                          0                 0 0
##      0.399450114450523                          0                 0 0
##      0.419739887455571                          0                 0 0
##      0.425358901761228                          0                 0 0
##      0.594035429893685                          0                 0 0
##      0.671638488556335                          0                 0 0
##      0.688092298985074                          0                 0 0
##      0.806600378227794                          0                 0 0
##      0.867455094638368                          0                 0 0
##      0.897003448844096                          0                 0 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 1.34930555555556 4.020833333 6.15
##      0.000000000123720820519974                0           0    0
##      0.0000000142143709248919                  0           0    0
##      0.0000000203570784591136                  0           0    0
##      0.0000000942663046181582                  0           0    0
##      0.0381424863643358                        0           0    0
##      0.0395235614826762                        0           0    0
##      0.0398504564629362                        0           0    0
##      0.0449831541922517                        0           0    0
##      0.150208567676068                         0           0    0
##      0.291704657263826                         0           0    0
##      0.31263158525612                          0           0    0
##      0.313581394222809                         0           0    0
##      0.399450114450523                         0           0    0
##      0.419739887455571                         0           0    0
##      0.425358901761228                         0           0    0
##      0.594035429893685                         0           0    0
##      0.671638488556335                         0           0    0
##      0.688092298985074                         0           0    0
##      0.806600378227794                         0           0    0
##      0.867455094638368                         0           0    0
##      0.897003448844096                         0           0    0
## 
## , , OTT_Time = 3, Snapchat_Time = 3.83333333333333, Instagram_Time = 0.156944444444444
## 
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.125 0.142361111111111 0.152777777777778
##      0.000000000123720820519974     0                 0                 0
##      0.0000000142143709248919       0                 0                 0
##      0.0000000203570784591136       0                 0                 0
##      0.0000000942663046181582       0                 0                 0
##      0.0381424863643358             0                 0                 0
##      0.0395235614826762             0                 0                 0
##      0.0398504564629362             0                 0                 0
##      0.0449831541922517             0                 0                 0
##      0.150208567676068              0                 0                 0
##      0.291704657263826              0                 0                 0
##      0.31263158525612               0                 0                 0
##      0.313581394222809              0                 0                 0
##      0.399450114450523              0                 0                 0
##      0.419739887455571              0                 0                 0
##      0.425358901761228              0                 0                 0
##      0.594035429893685              0                 0                 0
##      0.671638488556335              0                 0                 0
##      0.688092298985074              0                 0                 0
##      0.806600378227794              0                 0                 0
##      0.867455094638368              0                 0                 0
##      0.897003448844096              0                 0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.174305555555556 0.208333333333333
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.220833333333333 0.25 0.270833333333333
##      0.000000000123720820519974                 0    0                 0
##      0.0000000142143709248919                   0    0                 0
##      0.0000000203570784591136                   0    0                 0
##      0.0000000942663046181582                   0    0                 0
##      0.0381424863643358                         0    0                 0
##      0.0395235614826762                         0    0                 0
##      0.0398504564629362                         0    0                 0
##      0.0449831541922517                         0    0                 0
##      0.150208567676068                          0    0                 0
##      0.291704657263826                          0    0                 0
##      0.31263158525612                           0    0                 0
##      0.313581394222809                          0    0                 0
##      0.399450114450523                          0    0                 0
##      0.419739887455571                          0    0                 0
##      0.425358901761228                          0    0                 0
##      0.594035429893685                          0    0                 0
##      0.671638488556335                          0    0                 0
##      0.688092298985074                          0    0                 0
##      0.806600378227794                          0    0                 0
##      0.867455094638368                          0    0                 0
##      0.897003448844096                          0    0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.289583333333333 0.371527777777778
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.409722222222222 0.416666666666667 0.5 0.55625
##      0.000000000123720820519974                 0                 0   0       0
##      0.0000000142143709248919                   0                 0   0       0
##      0.0000000203570784591136                   0                 0   0       0
##      0.0000000942663046181582                   0                 0   0       0
##      0.0381424863643358                         0                 0   0       0
##      0.0395235614826762                         0                 0   0       0
##      0.0398504564629362                         0                 0   0       0
##      0.0449831541922517                         0                 0   0       0
##      0.150208567676068                          0                 0   0       0
##      0.291704657263826                          0                 0   0       0
##      0.31263158525612                           0                 0   0       0
##      0.313581394222809                          0                 0   0       0
##      0.399450114450523                          0                 0   0       0
##      0.419739887455571                          0                 0   0       0
##      0.425358901761228                          0                 0   0       0
##      0.594035429893685                          0                 0   0       0
##      0.671638488556335                          0                 0   0       0
##      0.688092298985074                          0                 0   0       0
##      0.806600378227794                          0                 0   0       0
##      0.867455094638368                          0                 0   0       0
##      0.897003448844096                          0                 0   0       0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.639583333333333 0.907785087701754 1
##      0.000000000123720820519974                 0                 0 0
##      0.0000000142143709248919                   0                 0 0
##      0.0000000203570784591136                   0                 0 0
##      0.0000000942663046181582                   0                 0 0
##      0.0381424863643358                         0                 0 0
##      0.0395235614826762                         0                 0 0
##      0.0398504564629362                         0                 0 0
##      0.0449831541922517                         0                 0 0
##      0.150208567676068                          0                 0 0
##      0.291704657263826                          0                 0 0
##      0.31263158525612                           0                 0 0
##      0.313581394222809                          0                 0 0
##      0.399450114450523                          0                 0 0
##      0.419739887455571                          0                 0 0
##      0.425358901761228                          0                 0 0
##      0.594035429893685                          0                 0 0
##      0.671638488556335                          0                 0 0
##      0.688092298985074                          0                 0 0
##      0.806600378227794                          0                 0 0
##      0.867455094638368                          0                 0 0
##      0.897003448844096                          0                 0 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 1.34930555555556 4.020833333 6.15
##      0.000000000123720820519974                0           0    0
##      0.0000000142143709248919                  0           0    0
##      0.0000000203570784591136                  0           0    0
##      0.0000000942663046181582                  0           0    0
##      0.0381424863643358                        0           0    0
##      0.0395235614826762                        0           0    0
##      0.0398504564629362                        0           0    0
##      0.0449831541922517                        0           0    0
##      0.150208567676068                         0           0    0
##      0.291704657263826                         0           0    0
##      0.31263158525612                          0           0    0
##      0.313581394222809                         0           0    0
##      0.399450114450523                         0           0    0
##      0.419739887455571                         0           0    0
##      0.425358901761228                         0           0    0
##      0.594035429893685                         0           0    0
##      0.671638488556335                         0           0    0
##      0.688092298985074                         0           0    0
##      0.806600378227794                         0           0    0
##      0.867455094638368                         0           0    0
##      0.897003448844096                         0           0    0
## 
## , , OTT_Time = 14.5, Snapchat_Time = 3.83333333333333, Instagram_Time = 0.156944444444444
## 
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.125 0.142361111111111 0.152777777777778
##      0.000000000123720820519974     0                 0                 0
##      0.0000000142143709248919       0                 0                 0
##      0.0000000203570784591136       0                 0                 0
##      0.0000000942663046181582       0                 0                 0
##      0.0381424863643358             0                 0                 0
##      0.0395235614826762             0                 0                 0
##      0.0398504564629362             0                 0                 0
##      0.0449831541922517             0                 0                 0
##      0.150208567676068              0                 0                 0
##      0.291704657263826              0                 0                 0
##      0.31263158525612               0                 0                 0
##      0.313581394222809              0                 0                 0
##      0.399450114450523              0                 0                 0
##      0.419739887455571              0                 0                 0
##      0.425358901761228              0                 0                 0
##      0.594035429893685              0                 0                 0
##      0.671638488556335              0                 0                 0
##      0.688092298985074              0                 0                 0
##      0.806600378227794              0                 0                 0
##      0.867455094638368              0                 0                 0
##      0.897003448844096              0                 0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.174305555555556 0.208333333333333
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.220833333333333 0.25 0.270833333333333
##      0.000000000123720820519974                 0    0                 0
##      0.0000000142143709248919                   0    0                 0
##      0.0000000203570784591136                   0    0                 0
##      0.0000000942663046181582                   0    0                 0
##      0.0381424863643358                         0    0                 0
##      0.0395235614826762                         0    0                 0
##      0.0398504564629362                         0    0                 0
##      0.0449831541922517                         0    0                 0
##      0.150208567676068                          0    0                 0
##      0.291704657263826                          0    0                 0
##      0.31263158525612                           0    0                 0
##      0.313581394222809                          0    0                 0
##      0.399450114450523                          0    0                 0
##      0.419739887455571                          0    0                 0
##      0.425358901761228                          0    0                 0
##      0.594035429893685                          0    0                 0
##      0.671638488556335                          0    0                 0
##      0.688092298985074                          0    0                 0
##      0.806600378227794                          0    0                 0
##      0.867455094638368                          0    0                 0
##      0.897003448844096                          0    0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.289583333333333 0.371527777777778
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.409722222222222 0.416666666666667 0.5 0.55625
##      0.000000000123720820519974                 0                 0   0       0
##      0.0000000142143709248919                   0                 0   0       0
##      0.0000000203570784591136                   0                 0   0       0
##      0.0000000942663046181582                   0                 0   0       0
##      0.0381424863643358                         0                 0   0       0
##      0.0395235614826762                         0                 0   0       0
##      0.0398504564629362                         0                 0   0       0
##      0.0449831541922517                         0                 0   0       0
##      0.150208567676068                          0                 0   0       0
##      0.291704657263826                          0                 0   0       0
##      0.31263158525612                           0                 0   0       0
##      0.313581394222809                          0                 0   0       0
##      0.399450114450523                          0                 0   0       0
##      0.419739887455571                          0                 0   0       0
##      0.425358901761228                          0                 0   0       0
##      0.594035429893685                          0                 0   0       0
##      0.671638488556335                          0                 0   0       0
##      0.688092298985074                          0                 0   0       0
##      0.806600378227794                          0                 0   0       0
##      0.867455094638368                          0                 0   0       0
##      0.897003448844096                          0                 0   0       0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.639583333333333 0.907785087701754 1
##      0.000000000123720820519974                 0                 0 0
##      0.0000000142143709248919                   0                 0 0
##      0.0000000203570784591136                   0                 0 0
##      0.0000000942663046181582                   0                 0 0
##      0.0381424863643358                         0                 0 0
##      0.0395235614826762                         0                 0 0
##      0.0398504564629362                         0                 0 0
##      0.0449831541922517                         0                 0 0
##      0.150208567676068                          0                 0 0
##      0.291704657263826                          0                 0 0
##      0.31263158525612                           0                 0 0
##      0.313581394222809                          0                 0 0
##      0.399450114450523                          0                 0 0
##      0.419739887455571                          0                 0 0
##      0.425358901761228                          0                 0 0
##      0.594035429893685                          0                 0 0
##      0.671638488556335                          0                 0 0
##      0.688092298985074                          0                 0 0
##      0.806600378227794                          0                 0 0
##      0.867455094638368                          0                 0 0
##      0.897003448844096                          0                 0 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 1.34930555555556 4.020833333 6.15
##      0.000000000123720820519974                0           0    0
##      0.0000000142143709248919                  0           0    0
##      0.0000000203570784591136                  0           0    0
##      0.0000000942663046181582                  0           0    0
##      0.0381424863643358                        0           0    0
##      0.0395235614826762                        0           0    0
##      0.0398504564629362                        0           0    0
##      0.0449831541922517                        0           0    0
##      0.150208567676068                         0           0    0
##      0.291704657263826                         0           0    0
##      0.31263158525612                          0           0    0
##      0.313581394222809                         0           0    0
##      0.399450114450523                         0           0    0
##      0.419739887455571                         0           0    0
##      0.425358901761228                         0           0    0
##      0.594035429893685                         0           0    0
##      0.671638488556335                         0           0    0
##      0.688092298985074                         0           0    0
##      0.806600378227794                         0           0    0
##      0.867455094638368                         0           0    0
##      0.897003448844096                         0           0    0
## 
## , , OTT_Time = 0, Snapchat_Time = 0, Instagram_Time = 0.190972222222222
## 
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.125 0.142361111111111 0.152777777777778
##      0.000000000123720820519974     0                 0                 0
##      0.0000000142143709248919       0                 0                 0
##      0.0000000203570784591136       0                 0                 0
##      0.0000000942663046181582       0                 0                 0
##      0.0381424863643358             0                 0                 0
##      0.0395235614826762             0                 0                 0
##      0.0398504564629362             0                 0                 0
##      0.0449831541922517             0                 0                 0
##      0.150208567676068              0                 0                 0
##      0.291704657263826              0                 0                 0
##      0.31263158525612               0                 0                 0
##      0.313581394222809              0                 0                 0
##      0.399450114450523              0                 0                 0
##      0.419739887455571              0                 0                 0
##      0.425358901761228              0                 0                 0
##      0.594035429893685              0                 0                 0
##      0.671638488556335              0                 0                 0
##      0.688092298985074              0                 0                 0
##      0.806600378227794              0                 0                 0
##      0.867455094638368              0                 0                 0
##      0.897003448844096              0                 0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.174305555555556 0.208333333333333
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.220833333333333 0.25 0.270833333333333
##      0.000000000123720820519974                 0    0                 0
##      0.0000000142143709248919                   0    0                 0
##      0.0000000203570784591136                   0    0                 0
##      0.0000000942663046181582                   0    0                 0
##      0.0381424863643358                         0    0                 0
##      0.0395235614826762                         0    0                 0
##      0.0398504564629362                         0    0                 0
##      0.0449831541922517                         0    0                 0
##      0.150208567676068                          0    0                 0
##      0.291704657263826                          0    0                 0
##      0.31263158525612                           0    0                 0
##      0.313581394222809                          0    0                 0
##      0.399450114450523                          0    0                 0
##      0.419739887455571                          0    0                 0
##      0.425358901761228                          0    0                 0
##      0.594035429893685                          0    0                 0
##      0.671638488556335                          0    0                 0
##      0.688092298985074                          0    0                 0
##      0.806600378227794                          0    0                 0
##      0.867455094638368                          0    0                 0
##      0.897003448844096                          0    0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.289583333333333 0.371527777777778
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.409722222222222 0.416666666666667 0.5 0.55625
##      0.000000000123720820519974                 0                 0   0       0
##      0.0000000142143709248919                   0                 0   0       0
##      0.0000000203570784591136                   0                 0   0       0
##      0.0000000942663046181582                   0                 0   0       0
##      0.0381424863643358                         0                 0   0       0
##      0.0395235614826762                         0                 0   0       0
##      0.0398504564629362                         0                 0   0       0
##      0.0449831541922517                         0                 0   0       0
##      0.150208567676068                          0                 0   0       0
##      0.291704657263826                          0                 0   0       0
##      0.31263158525612                           0                 0   0       0
##      0.313581394222809                          0                 0   0       0
##      0.399450114450523                          0                 0   0       0
##      0.419739887455571                          0                 0   0       0
##      0.425358901761228                          0                 0   0       0
##      0.594035429893685                          0                 0   0       0
##      0.671638488556335                          0                 0   0       0
##      0.688092298985074                          0                 0   0       0
##      0.806600378227794                          0                 0   0       0
##      0.867455094638368                          0                 0   0       0
##      0.897003448844096                          0                 0   0       0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.639583333333333 0.907785087701754 1
##      0.000000000123720820519974                 0                 0 0
##      0.0000000142143709248919                   0                 0 0
##      0.0000000203570784591136                   0                 0 0
##      0.0000000942663046181582                   0                 0 0
##      0.0381424863643358                         0                 0 0
##      0.0395235614826762                         0                 0 0
##      0.0398504564629362                         0                 0 0
##      0.0449831541922517                         0                 0 0
##      0.150208567676068                          0                 0 0
##      0.291704657263826                          0                 0 0
##      0.31263158525612                           0                 0 0
##      0.313581394222809                          0                 0 0
##      0.399450114450523                          0                 0 0
##      0.419739887455571                          0                 0 0
##      0.425358901761228                          0                 0 0
##      0.594035429893685                          0                 0 0
##      0.671638488556335                          0                 0 0
##      0.688092298985074                          0                 0 0
##      0.806600378227794                          0                 0 0
##      0.867455094638368                          0                 0 0
##      0.897003448844096                          0                 0 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 1.34930555555556 4.020833333 6.15
##      0.000000000123720820519974                0           0    0
##      0.0000000142143709248919                  0           0    0
##      0.0000000203570784591136                  0           0    0
##      0.0000000942663046181582                  0           0    0
##      0.0381424863643358                        0           0    0
##      0.0395235614826762                        0           0    0
##      0.0398504564629362                        0           0    0
##      0.0449831541922517                        0           0    0
##      0.150208567676068                         0           0    0
##      0.291704657263826                         0           0    0
##      0.31263158525612                          0           0    0
##      0.313581394222809                         0           0    0
##      0.399450114450523                         0           0    0
##      0.419739887455571                         0           0    0
##      0.425358901761228                         0           0    0
##      0.594035429893685                         0           0    0
##      0.671638488556335                         0           0    0
##      0.688092298985074                         0           0    0
##      0.806600378227794                         0           0    0
##      0.867455094638368                         0           0    0
##      0.897003448844096                         0           0    0
## 
## , , OTT_Time = 0.102777777777778, Snapchat_Time = 0, Instagram_Time = 0.190972222222222
## 
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.125 0.142361111111111 0.152777777777778
##      0.000000000123720820519974     0                 0                 0
##      0.0000000142143709248919       0                 0                 0
##      0.0000000203570784591136       0                 0                 0
##      0.0000000942663046181582       0                 0                 0
##      0.0381424863643358             0                 0                 0
##      0.0395235614826762             0                 0                 0
##      0.0398504564629362             0                 0                 0
##      0.0449831541922517             0                 0                 0
##      0.150208567676068              0                 0                 0
##      0.291704657263826              0                 0                 0
##      0.31263158525612               0                 0                 0
##      0.313581394222809              0                 0                 0
##      0.399450114450523              0                 0                 0
##      0.419739887455571              0                 0                 0
##      0.425358901761228              0                 0                 0
##      0.594035429893685              0                 0                 0
##      0.671638488556335              0                 0                 0
##      0.688092298985074              0                 0                 0
##      0.806600378227794              0                 0                 0
##      0.867455094638368              0                 0                 0
##      0.897003448844096              0                 0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.174305555555556 0.208333333333333
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.220833333333333 0.25 0.270833333333333
##      0.000000000123720820519974                 0    0                 0
##      0.0000000142143709248919                   0    0                 0
##      0.0000000203570784591136                   0    0                 0
##      0.0000000942663046181582                   0    0                 0
##      0.0381424863643358                         0    0                 0
##      0.0395235614826762                         0    0                 0
##      0.0398504564629362                         0    0                 0
##      0.0449831541922517                         0    0                 0
##      0.150208567676068                          0    0                 0
##      0.291704657263826                          0    0                 0
##      0.31263158525612                           0    0                 0
##      0.313581394222809                          0    0                 0
##      0.399450114450523                          0    0                 0
##      0.419739887455571                          0    0                 0
##      0.425358901761228                          0    0                 0
##      0.594035429893685                          0    0                 0
##      0.671638488556335                          0    0                 0
##      0.688092298985074                          0    0                 0
##      0.806600378227794                          0    0                 0
##      0.867455094638368                          0    0                 0
##      0.897003448844096                          0    0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.289583333333333 0.371527777777778
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.409722222222222 0.416666666666667 0.5 0.55625
##      0.000000000123720820519974                 0                 0   0       0
##      0.0000000142143709248919                   0                 0   0       0
##      0.0000000203570784591136                   0                 0   0       0
##      0.0000000942663046181582                   0                 0   0       0
##      0.0381424863643358                         0                 0   0       0
##      0.0395235614826762                         0                 0   0       0
##      0.0398504564629362                         0                 0   0       0
##      0.0449831541922517                         0                 0   0       0
##      0.150208567676068                          0                 0   0       0
##      0.291704657263826                          0                 0   0       0
##      0.31263158525612                           0                 0   0       0
##      0.313581394222809                          0                 0   0       0
##      0.399450114450523                          0                 0   0       0
##      0.419739887455571                          0                 0   0       0
##      0.425358901761228                          0                 0   0       0
##      0.594035429893685                          0                 0   0       0
##      0.671638488556335                          0                 0   0       0
##      0.688092298985074                          0                 0   0       0
##      0.806600378227794                          0                 0   0       0
##      0.867455094638368                          0                 0   0       0
##      0.897003448844096                          0                 0   0       0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.639583333333333 0.907785087701754 1
##      0.000000000123720820519974                 0                 0 0
##      0.0000000142143709248919                   0                 0 0
##      0.0000000203570784591136                   0                 0 0
##      0.0000000942663046181582                   0                 0 0
##      0.0381424863643358                         0                 0 0
##      0.0395235614826762                         0                 0 0
##      0.0398504564629362                         0                 0 0
##      0.0449831541922517                         0                 0 0
##      0.150208567676068                          0                 0 0
##      0.291704657263826                          0                 0 0
##      0.31263158525612                           0                 0 0
##      0.313581394222809                          0                 0 0
##      0.399450114450523                          0                 0 0
##      0.419739887455571                          0                 0 0
##      0.425358901761228                          0                 0 0
##      0.594035429893685                          0                 0 0
##      0.671638488556335                          0                 0 0
##      0.688092298985074                          0                 0 0
##      0.806600378227794                          0                 0 0
##      0.867455094638368                          0                 0 0
##      0.897003448844096                          0                 0 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 1.34930555555556 4.020833333 6.15
##      0.000000000123720820519974                0           0    0
##      0.0000000142143709248919                  0           0    0
##      0.0000000203570784591136                  0           0    0
##      0.0000000942663046181582                  0           0    0
##      0.0381424863643358                        0           0    0
##      0.0395235614826762                        0           0    0
##      0.0398504564629362                        0           0    0
##      0.0449831541922517                        0           0    0
##      0.150208567676068                         0           0    0
##      0.291704657263826                         0           0    0
##      0.31263158525612                          0           0    0
##      0.313581394222809                         0           0    0
##      0.399450114450523                         0           0    0
##      0.419739887455571                         0           0    0
##      0.425358901761228                         0           0    0
##      0.594035429893685                         0           0    0
##      0.671638488556335                         0           0    0
##      0.688092298985074                         0           0    0
##      0.806600378227794                         0           0    0
##      0.867455094638368                         0           0    0
##      0.897003448844096                         0           0    0
## 
## , , OTT_Time = 0.125, Snapchat_Time = 0, Instagram_Time = 0.190972222222222
## 
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.125 0.142361111111111 0.152777777777778
##      0.000000000123720820519974     0                 0                 0
##      0.0000000142143709248919       0                 0                 0
##      0.0000000203570784591136       0                 0                 0
##      0.0000000942663046181582       0                 0                 0
##      0.0381424863643358             0                 0                 0
##      0.0395235614826762             0                 0                 0
##      0.0398504564629362             0                 0                 0
##      0.0449831541922517             0                 0                 0
##      0.150208567676068              0                 0                 0
##      0.291704657263826              0                 0                 0
##      0.31263158525612               0                 0                 0
##      0.313581394222809              0                 0                 0
##      0.399450114450523              0                 0                 0
##      0.419739887455571              0                 0                 0
##      0.425358901761228              0                 0                 0
##      0.594035429893685              0                 0                 0
##      0.671638488556335              0                 0                 0
##      0.688092298985074              0                 0                 0
##      0.806600378227794              0                 0                 0
##      0.867455094638368              0                 0                 0
##      0.897003448844096              0                 0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.174305555555556 0.208333333333333
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.220833333333333 0.25 0.270833333333333
##      0.000000000123720820519974                 0    0                 0
##      0.0000000142143709248919                   0    0                 0
##      0.0000000203570784591136                   0    0                 0
##      0.0000000942663046181582                   0    0                 0
##      0.0381424863643358                         0    0                 0
##      0.0395235614826762                         0    0                 0
##      0.0398504564629362                         0    0                 0
##      0.0449831541922517                         0    0                 0
##      0.150208567676068                          0    0                 0
##      0.291704657263826                          0    0                 0
##      0.31263158525612                           0    0                 0
##      0.313581394222809                          0    0                 0
##      0.399450114450523                          0    0                 0
##      0.419739887455571                          0    0                 0
##      0.425358901761228                          0    0                 0
##      0.594035429893685                          0    0                 0
##      0.671638488556335                          0    0                 0
##      0.688092298985074                          0    0                 0
##      0.806600378227794                          0    0                 0
##      0.867455094638368                          0    0                 0
##      0.897003448844096                          0    0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.289583333333333 0.371527777777778
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.409722222222222 0.416666666666667 0.5 0.55625
##      0.000000000123720820519974                 0                 0   0       0
##      0.0000000142143709248919                   0                 0   0       0
##      0.0000000203570784591136                   0                 0   0       0
##      0.0000000942663046181582                   0                 0   0       0
##      0.0381424863643358                         0                 0   0       0
##      0.0395235614826762                         0                 0   0       0
##      0.0398504564629362                         0                 0   0       0
##      0.0449831541922517                         0                 0   0       0
##      0.150208567676068                          0                 0   0       0
##      0.291704657263826                          0                 0   0       0
##      0.31263158525612                           0                 0   0       0
##      0.313581394222809                          0                 0   0       0
##      0.399450114450523                          0                 0   0       0
##      0.419739887455571                          0                 0   0       0
##      0.425358901761228                          0                 0   0       0
##      0.594035429893685                          0                 0   0       0
##      0.671638488556335                          0                 0   0       0
##      0.688092298985074                          0                 0   0       0
##      0.806600378227794                          0                 0   0       0
##      0.867455094638368                          0                 0   0       0
##      0.897003448844096                          0                 0   0       0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.639583333333333 0.907785087701754 1
##      0.000000000123720820519974                 0                 0 0
##      0.0000000142143709248919                   0                 0 0
##      0.0000000203570784591136                   0                 0 0
##      0.0000000942663046181582                   0                 0 0
##      0.0381424863643358                         0                 0 0
##      0.0395235614826762                         0                 0 0
##      0.0398504564629362                         0                 0 0
##      0.0449831541922517                         0                 0 0
##      0.150208567676068                          0                 0 0
##      0.291704657263826                          0                 0 0
##      0.31263158525612                           0                 0 0
##      0.313581394222809                          0                 0 0
##      0.399450114450523                          0                 0 0
##      0.419739887455571                          0                 0 0
##      0.425358901761228                          0                 0 0
##      0.594035429893685                          0                 0 0
##      0.671638488556335                          0                 0 0
##      0.688092298985074                          0                 0 0
##      0.806600378227794                          0                 0 0
##      0.867455094638368                          0                 0 0
##      0.897003448844096                          0                 0 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 1.34930555555556 4.020833333 6.15
##      0.000000000123720820519974                0           0    0
##      0.0000000142143709248919                  0           0    0
##      0.0000000203570784591136                  0           0    0
##      0.0000000942663046181582                  0           0    0
##      0.0381424863643358                        0           0    0
##      0.0395235614826762                        0           0    0
##      0.0398504564629362                        0           0    0
##      0.0449831541922517                        0           0    0
##      0.150208567676068                         0           0    0
##      0.291704657263826                         0           0    0
##      0.31263158525612                          0           0    0
##      0.313581394222809                         0           0    0
##      0.399450114450523                         0           0    0
##      0.419739887455571                         0           0    0
##      0.425358901761228                         0           0    0
##      0.594035429893685                         0           0    0
##      0.671638488556335                         0           0    0
##      0.688092298985074                         0           0    0
##      0.806600378227794                         0           0    0
##      0.867455094638368                         0           0    0
##      0.897003448844096                         0           0    0
## 
## , , OTT_Time = 0.416666666666667, Snapchat_Time = 0, Instagram_Time = 0.190972222222222
## 
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.125 0.142361111111111 0.152777777777778
##      0.000000000123720820519974     0                 0                 0
##      0.0000000142143709248919       0                 0                 0
##      0.0000000203570784591136       0                 0                 0
##      0.0000000942663046181582       0                 0                 0
##      0.0381424863643358             0                 0                 0
##      0.0395235614826762             0                 0                 0
##      0.0398504564629362             0                 0                 0
##      0.0449831541922517             0                 0                 0
##      0.150208567676068              0                 0                 0
##      0.291704657263826              0                 0                 0
##      0.31263158525612               0                 0                 0
##      0.313581394222809              0                 0                 0
##      0.399450114450523              0                 0                 0
##      0.419739887455571              0                 0                 0
##      0.425358901761228              0                 0                 0
##      0.594035429893685              0                 0                 0
##      0.671638488556335              0                 0                 0
##      0.688092298985074              0                 0                 0
##      0.806600378227794              0                 0                 0
##      0.867455094638368              0                 0                 0
##      0.897003448844096              0                 0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.174305555555556 0.208333333333333
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.220833333333333 0.25 0.270833333333333
##      0.000000000123720820519974                 0    0                 0
##      0.0000000142143709248919                   0    0                 0
##      0.0000000203570784591136                   0    0                 0
##      0.0000000942663046181582                   0    0                 0
##      0.0381424863643358                         0    0                 0
##      0.0395235614826762                         0    0                 0
##      0.0398504564629362                         0    0                 0
##      0.0449831541922517                         0    0                 0
##      0.150208567676068                          0    0                 0
##      0.291704657263826                          0    0                 0
##      0.31263158525612                           0    0                 0
##      0.313581394222809                          0    0                 0
##      0.399450114450523                          0    0                 0
##      0.419739887455571                          0    0                 0
##      0.425358901761228                          0    0                 0
##      0.594035429893685                          0    0                 0
##      0.671638488556335                          0    0                 0
##      0.688092298985074                          0    0                 0
##      0.806600378227794                          0    0                 0
##      0.867455094638368                          0    0                 0
##      0.897003448844096                          0    0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.289583333333333 0.371527777777778
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.409722222222222 0.416666666666667 0.5 0.55625
##      0.000000000123720820519974                 0                 0   0       0
##      0.0000000142143709248919                   0                 0   0       0
##      0.0000000203570784591136                   0                 0   0       0
##      0.0000000942663046181582                   0                 0   0       0
##      0.0381424863643358                         0                 0   0       0
##      0.0395235614826762                         0                 0   0       0
##      0.0398504564629362                         0                 0   0       0
##      0.0449831541922517                         0                 0   0       0
##      0.150208567676068                          0                 0   0       0
##      0.291704657263826                          0                 0   0       0
##      0.31263158525612                           0                 0   0       0
##      0.313581394222809                          0                 0   0       0
##      0.399450114450523                          0                 0   0       0
##      0.419739887455571                          0                 0   0       0
##      0.425358901761228                          0                 0   0       0
##      0.594035429893685                          0                 0   0       0
##      0.671638488556335                          0                 0   0       0
##      0.688092298985074                          0                 0   0       0
##      0.806600378227794                          0                 0   0       0
##      0.867455094638368                          0                 0   0       0
##      0.897003448844096                          0                 0   0       0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.639583333333333 0.907785087701754 1
##      0.000000000123720820519974                 0                 0 0
##      0.0000000142143709248919                   0                 0 0
##      0.0000000203570784591136                   0                 0 0
##      0.0000000942663046181582                   0                 0 0
##      0.0381424863643358                         0                 0 0
##      0.0395235614826762                         0                 0 0
##      0.0398504564629362                         0                 0 0
##      0.0449831541922517                         0                 0 0
##      0.150208567676068                          0                 0 0
##      0.291704657263826                          0                 0 0
##      0.31263158525612                           0                 0 0
##      0.313581394222809                          0                 0 0
##      0.399450114450523                          0                 0 0
##      0.419739887455571                          0                 0 0
##      0.425358901761228                          0                 0 0
##      0.594035429893685                          0                 0 0
##      0.671638488556335                          0                 0 0
##      0.688092298985074                          0                 0 0
##      0.806600378227794                          0                 0 0
##      0.867455094638368                          0                 0 0
##      0.897003448844096                          0                 0 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 1.34930555555556 4.020833333 6.15
##      0.000000000123720820519974                0           0    0
##      0.0000000142143709248919                  0           0    0
##      0.0000000203570784591136                  0           0    0
##      0.0000000942663046181582                  0           0    0
##      0.0381424863643358                        0           0    0
##      0.0395235614826762                        0           0    0
##      0.0398504564629362                        0           0    0
##      0.0449831541922517                        0           0    0
##      0.150208567676068                         0           0    0
##      0.291704657263826                         0           0    0
##      0.31263158525612                          0           0    0
##      0.313581394222809                         0           0    0
##      0.399450114450523                         0           0    0
##      0.419739887455571                         0           0    0
##      0.425358901761228                         0           0    0
##      0.594035429893685                         0           0    0
##      0.671638488556335                         0           0    0
##      0.688092298985074                         0           0    0
##      0.806600378227794                         0           0    0
##      0.867455094638368                         0           0    0
##      0.897003448844096                         0           0    0
## 
## , , OTT_Time = 0.5104166667, Snapchat_Time = 0, Instagram_Time = 0.190972222222222
## 
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.125 0.142361111111111 0.152777777777778
##      0.000000000123720820519974     0                 0                 0
##      0.0000000142143709248919       0                 0                 0
##      0.0000000203570784591136       0                 0                 0
##      0.0000000942663046181582       0                 0                 0
##      0.0381424863643358             0                 0                 0
##      0.0395235614826762             0                 0                 0
##      0.0398504564629362             0                 0                 0
##      0.0449831541922517             0                 0                 0
##      0.150208567676068              0                 0                 0
##      0.291704657263826              0                 0                 0
##      0.31263158525612               0                 0                 0
##      0.313581394222809              0                 0                 0
##      0.399450114450523              0                 0                 0
##      0.419739887455571              0                 0                 0
##      0.425358901761228              0                 0                 0
##      0.594035429893685              0                 0                 0
##      0.671638488556335              0                 0                 0
##      0.688092298985074              0                 0                 0
##      0.806600378227794              0                 0                 0
##      0.867455094638368              0                 0                 0
##      0.897003448844096              0                 0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.174305555555556 0.208333333333333
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.220833333333333 0.25 0.270833333333333
##      0.000000000123720820519974                 0    0                 0
##      0.0000000142143709248919                   0    0                 0
##      0.0000000203570784591136                   0    0                 0
##      0.0000000942663046181582                   0    0                 0
##      0.0381424863643358                         0    0                 0
##      0.0395235614826762                         0    0                 0
##      0.0398504564629362                         0    0                 0
##      0.0449831541922517                         0    0                 0
##      0.150208567676068                          0    0                 0
##      0.291704657263826                          0    0                 0
##      0.31263158525612                           0    0                 0
##      0.313581394222809                          0    0                 0
##      0.399450114450523                          0    0                 0
##      0.419739887455571                          0    0                 0
##      0.425358901761228                          0    0                 0
##      0.594035429893685                          0    0                 0
##      0.671638488556335                          0    0                 0
##      0.688092298985074                          0    0                 0
##      0.806600378227794                          0    0                 0
##      0.867455094638368                          0    0                 0
##      0.897003448844096                          0    0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.289583333333333 0.371527777777778
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.409722222222222 0.416666666666667 0.5 0.55625
##      0.000000000123720820519974                 0                 0   0       0
##      0.0000000142143709248919                   0                 0   0       0
##      0.0000000203570784591136                   0                 0   0       0
##      0.0000000942663046181582                   0                 0   0       0
##      0.0381424863643358                         0                 0   0       0
##      0.0395235614826762                         0                 0   0       0
##      0.0398504564629362                         0                 0   0       0
##      0.0449831541922517                         0                 0   0       0
##      0.150208567676068                          0                 0   0       0
##      0.291704657263826                          0                 0   0       0
##      0.31263158525612                           0                 0   0       0
##      0.313581394222809                          0                 0   0       0
##      0.399450114450523                          0                 0   0       0
##      0.419739887455571                          0                 0   0       0
##      0.425358901761228                          0                 0   0       0
##      0.594035429893685                          0                 0   0       0
##      0.671638488556335                          0                 0   0       0
##      0.688092298985074                          0                 0   0       0
##      0.806600378227794                          0                 0   0       0
##      0.867455094638368                          0                 0   0       0
##      0.897003448844096                          0                 0   0       0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.639583333333333 0.907785087701754 1
##      0.000000000123720820519974                 0                 0 0
##      0.0000000142143709248919                   0                 0 0
##      0.0000000203570784591136                   0                 0 0
##      0.0000000942663046181582                   0                 0 0
##      0.0381424863643358                         0                 0 0
##      0.0395235614826762                         0                 0 0
##      0.0398504564629362                         0                 0 0
##      0.0449831541922517                         0                 0 0
##      0.150208567676068                          0                 0 0
##      0.291704657263826                          0                 0 0
##      0.31263158525612                           0                 0 0
##      0.313581394222809                          0                 0 0
##      0.399450114450523                          0                 0 0
##      0.419739887455571                          0                 0 0
##      0.425358901761228                          0                 0 0
##      0.594035429893685                          0                 0 0
##      0.671638488556335                          0                 0 0
##      0.688092298985074                          0                 0 0
##      0.806600378227794                          0                 0 0
##      0.867455094638368                          0                 0 0
##      0.897003448844096                          0                 0 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 1.34930555555556 4.020833333 6.15
##      0.000000000123720820519974                0           0    0
##      0.0000000142143709248919                  0           0    0
##      0.0000000203570784591136                  0           0    0
##      0.0000000942663046181582                  0           0    0
##      0.0381424863643358                        0           0    0
##      0.0395235614826762                        0           0    0
##      0.0398504564629362                        0           0    0
##      0.0449831541922517                        0           0    0
##      0.150208567676068                         0           0    0
##      0.291704657263826                         0           0    0
##      0.31263158525612                          0           0    0
##      0.313581394222809                         0           0    0
##      0.399450114450523                         0           0    0
##      0.419739887455571                         0           0    0
##      0.425358901761228                         0           0    0
##      0.594035429893685                         0           0    0
##      0.671638488556335                         0           0    0
##      0.688092298985074                         0           0    0
##      0.806600378227794                         0           0    0
##      0.867455094638368                         0           0    0
##      0.897003448844096                         0           0    0
## 
## , , OTT_Time = 1.44460470085726, Snapchat_Time = 0, Instagram_Time = 0.190972222222222
## 
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.125 0.142361111111111 0.152777777777778
##      0.000000000123720820519974     0                 0                 0
##      0.0000000142143709248919       0                 0                 0
##      0.0000000203570784591136       0                 0                 0
##      0.0000000942663046181582       0                 0                 0
##      0.0381424863643358             0                 0                 0
##      0.0395235614826762             0                 0                 0
##      0.0398504564629362             0                 0                 0
##      0.0449831541922517             0                 0                 0
##      0.150208567676068              0                 0                 0
##      0.291704657263826              0                 0                 0
##      0.31263158525612               0                 0                 0
##      0.313581394222809              0                 0                 0
##      0.399450114450523              0                 0                 0
##      0.419739887455571              0                 0                 0
##      0.425358901761228              0                 0                 0
##      0.594035429893685              0                 0                 0
##      0.671638488556335              0                 0                 0
##      0.688092298985074              0                 0                 0
##      0.806600378227794              0                 0                 0
##      0.867455094638368              0                 0                 0
##      0.897003448844096              0                 0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.174305555555556 0.208333333333333
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.220833333333333 0.25 0.270833333333333
##      0.000000000123720820519974                 0    0                 0
##      0.0000000142143709248919                   0    0                 0
##      0.0000000203570784591136                   0    0                 0
##      0.0000000942663046181582                   0    0                 0
##      0.0381424863643358                         0    0                 0
##      0.0395235614826762                         0    0                 0
##      0.0398504564629362                         0    0                 0
##      0.0449831541922517                         0    0                 0
##      0.150208567676068                          0    0                 0
##      0.291704657263826                          0    0                 0
##      0.31263158525612                           0    0                 0
##      0.313581394222809                          0    0                 0
##      0.399450114450523                          0    0                 0
##      0.419739887455571                          0    0                 0
##      0.425358901761228                          0    0                 0
##      0.594035429893685                          0    0                 0
##      0.671638488556335                          0    0                 0
##      0.688092298985074                          0    0                 0
##      0.806600378227794                          0    0                 0
##      0.867455094638368                          0    0                 0
##      0.897003448844096                          0    0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.289583333333333 0.371527777777778
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.409722222222222 0.416666666666667 0.5 0.55625
##      0.000000000123720820519974                 0                 0   0       0
##      0.0000000142143709248919                   0                 0   0       0
##      0.0000000203570784591136                   0                 0   0       0
##      0.0000000942663046181582                   0                 0   0       0
##      0.0381424863643358                         0                 0   0       0
##      0.0395235614826762                         0                 0   0       0
##      0.0398504564629362                         0                 0   0       0
##      0.0449831541922517                         0                 0   0       0
##      0.150208567676068                          0                 0   0       0
##      0.291704657263826                          0                 0   0       0
##      0.31263158525612                           0                 0   0       0
##      0.313581394222809                          0                 0   0       0
##      0.399450114450523                          0                 0   0       0
##      0.419739887455571                          0                 0   0       0
##      0.425358901761228                          0                 0   0       0
##      0.594035429893685                          0                 0   0       0
##      0.671638488556335                          0                 0   0       0
##      0.688092298985074                          0                 0   0       0
##      0.806600378227794                          0                 0   0       0
##      0.867455094638368                          0                 0   0       0
##      0.897003448844096                          0                 0   0       0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.639583333333333 0.907785087701754 1
##      0.000000000123720820519974                 0                 0 0
##      0.0000000142143709248919                   0                 0 0
##      0.0000000203570784591136                   0                 0 0
##      0.0000000942663046181582                   0                 0 0
##      0.0381424863643358                         0                 0 0
##      0.0395235614826762                         0                 0 0
##      0.0398504564629362                         0                 0 0
##      0.0449831541922517                         0                 0 0
##      0.150208567676068                          0                 0 0
##      0.291704657263826                          0                 0 0
##      0.31263158525612                           0                 0 0
##      0.313581394222809                          0                 0 0
##      0.399450114450523                          0                 0 0
##      0.419739887455571                          0                 0 0
##      0.425358901761228                          0                 0 0
##      0.594035429893685                          0                 0 0
##      0.671638488556335                          0                 0 0
##      0.688092298985074                          0                 0 0
##      0.806600378227794                          0                 0 0
##      0.867455094638368                          0                 0 0
##      0.897003448844096                          0                 0 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 1.34930555555556 4.020833333 6.15
##      0.000000000123720820519974                0           0    0
##      0.0000000142143709248919                  0           0    0
##      0.0000000203570784591136                  0           0    0
##      0.0000000942663046181582                  0           0    0
##      0.0381424863643358                        0           0    0
##      0.0395235614826762                        0           0    0
##      0.0398504564629362                        0           0    0
##      0.0449831541922517                        0           0    0
##      0.150208567676068                         0           0    0
##      0.291704657263826                         0           0    0
##      0.31263158525612                          0           0    0
##      0.313581394222809                         0           0    0
##      0.399450114450523                         0           0    0
##      0.419739887455571                         0           0    0
##      0.425358901761228                         0           0    0
##      0.594035429893685                         0           0    0
##      0.671638488556335                         0           0    0
##      0.688092298985074                         0           0    0
##      0.806600378227794                         0           0    0
##      0.867455094638368                         0           0    0
##      0.897003448844096                         0           0    0
## 
## , , OTT_Time = 3, Snapchat_Time = 0, Instagram_Time = 0.190972222222222
## 
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.125 0.142361111111111 0.152777777777778
##      0.000000000123720820519974     0                 0                 0
##      0.0000000142143709248919       0                 0                 0
##      0.0000000203570784591136       0                 0                 0
##      0.0000000942663046181582       0                 0                 0
##      0.0381424863643358             0                 0                 0
##      0.0395235614826762             0                 0                 0
##      0.0398504564629362             0                 0                 0
##      0.0449831541922517             0                 0                 0
##      0.150208567676068              0                 0                 0
##      0.291704657263826              0                 0                 0
##      0.31263158525612               0                 0                 0
##      0.313581394222809              0                 0                 0
##      0.399450114450523              0                 0                 0
##      0.419739887455571              0                 0                 0
##      0.425358901761228              0                 0                 0
##      0.594035429893685              0                 0                 0
##      0.671638488556335              0                 0                 0
##      0.688092298985074              0                 0                 0
##      0.806600378227794              0                 0                 0
##      0.867455094638368              0                 0                 0
##      0.897003448844096              0                 0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.174305555555556 0.208333333333333
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.220833333333333 0.25 0.270833333333333
##      0.000000000123720820519974                 0    0                 0
##      0.0000000142143709248919                   0    0                 0
##      0.0000000203570784591136                   0    0                 0
##      0.0000000942663046181582                   0    0                 0
##      0.0381424863643358                         0    0                 0
##      0.0395235614826762                         0    0                 0
##      0.0398504564629362                         0    0                 0
##      0.0449831541922517                         0    0                 0
##      0.150208567676068                          0    0                 0
##      0.291704657263826                          0    0                 0
##      0.31263158525612                           0    0                 0
##      0.313581394222809                          0    0                 0
##      0.399450114450523                          0    0                 0
##      0.419739887455571                          0    0                 0
##      0.425358901761228                          0    0                 0
##      0.594035429893685                          0    0                 0
##      0.671638488556335                          0    0                 0
##      0.688092298985074                          0    0                 0
##      0.806600378227794                          0    0                 0
##      0.867455094638368                          0    0                 0
##      0.897003448844096                          0    0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.289583333333333 0.371527777777778
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.409722222222222 0.416666666666667 0.5 0.55625
##      0.000000000123720820519974                 0                 0   0       0
##      0.0000000142143709248919                   0                 0   0       0
##      0.0000000203570784591136                   0                 0   0       0
##      0.0000000942663046181582                   0                 0   0       0
##      0.0381424863643358                         0                 0   0       0
##      0.0395235614826762                         0                 0   0       0
##      0.0398504564629362                         0                 0   0       0
##      0.0449831541922517                         0                 0   0       0
##      0.150208567676068                          0                 0   0       0
##      0.291704657263826                          0                 0   0       0
##      0.31263158525612                           0                 0   0       0
##      0.313581394222809                          0                 0   0       0
##      0.399450114450523                          0                 0   0       0
##      0.419739887455571                          0                 0   0       0
##      0.425358901761228                          0                 0   0       0
##      0.594035429893685                          0                 0   0       0
##      0.671638488556335                          0                 0   0       0
##      0.688092298985074                          0                 0   0       0
##      0.806600378227794                          0                 0   0       0
##      0.867455094638368                          0                 0   0       0
##      0.897003448844096                          0                 0   0       0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.639583333333333 0.907785087701754 1
##      0.000000000123720820519974                 0                 0 0
##      0.0000000142143709248919                   0                 0 0
##      0.0000000203570784591136                   0                 0 0
##      0.0000000942663046181582                   0                 0 0
##      0.0381424863643358                         0                 0 0
##      0.0395235614826762                         0                 0 0
##      0.0398504564629362                         0                 0 0
##      0.0449831541922517                         0                 0 0
##      0.150208567676068                          0                 0 0
##      0.291704657263826                          0                 0 0
##      0.31263158525612                           0                 0 0
##      0.313581394222809                          0                 0 0
##      0.399450114450523                          0                 0 0
##      0.419739887455571                          0                 0 0
##      0.425358901761228                          0                 0 0
##      0.594035429893685                          0                 0 0
##      0.671638488556335                          0                 0 0
##      0.688092298985074                          0                 0 0
##      0.806600378227794                          0                 0 0
##      0.867455094638368                          0                 0 0
##      0.897003448844096                          0                 0 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 1.34930555555556 4.020833333 6.15
##      0.000000000123720820519974                0           0    0
##      0.0000000142143709248919                  0           0    0
##      0.0000000203570784591136                  0           0    0
##      0.0000000942663046181582                  0           0    0
##      0.0381424863643358                        0           0    0
##      0.0395235614826762                        0           0    0
##      0.0398504564629362                        0           0    0
##      0.0449831541922517                        0           0    0
##      0.150208567676068                         0           0    0
##      0.291704657263826                         0           0    0
##      0.31263158525612                          0           0    0
##      0.313581394222809                         0           0    0
##      0.399450114450523                         0           0    0
##      0.419739887455571                         0           0    0
##      0.425358901761228                         0           0    0
##      0.594035429893685                         0           0    0
##      0.671638488556335                         0           0    0
##      0.688092298985074                         0           0    0
##      0.806600378227794                         0           0    0
##      0.867455094638368                         0           0    0
##      0.897003448844096                         0           0    0
## 
## , , OTT_Time = 14.5, Snapchat_Time = 0, Instagram_Time = 0.190972222222222
## 
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.125 0.142361111111111 0.152777777777778
##      0.000000000123720820519974     0                 0                 0
##      0.0000000142143709248919       0                 0                 0
##      0.0000000203570784591136       0                 0                 0
##      0.0000000942663046181582       0                 0                 0
##      0.0381424863643358             0                 0                 0
##      0.0395235614826762             0                 0                 0
##      0.0398504564629362             0                 0                 0
##      0.0449831541922517             0                 0                 0
##      0.150208567676068              0                 0                 0
##      0.291704657263826              0                 0                 0
##      0.31263158525612               0                 0                 0
##      0.313581394222809              0                 0                 0
##      0.399450114450523              0                 0                 0
##      0.419739887455571              0                 0                 0
##      0.425358901761228              0                 0                 0
##      0.594035429893685              0                 0                 0
##      0.671638488556335              0                 0                 0
##      0.688092298985074              0                 0                 0
##      0.806600378227794              0                 0                 0
##      0.867455094638368              0                 0                 0
##      0.897003448844096              0                 0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.174305555555556 0.208333333333333
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.220833333333333 0.25 0.270833333333333
##      0.000000000123720820519974                 0    0                 0
##      0.0000000142143709248919                   0    0                 0
##      0.0000000203570784591136                   0    0                 0
##      0.0000000942663046181582                   0    0                 0
##      0.0381424863643358                         0    0                 0
##      0.0395235614826762                         0    0                 0
##      0.0398504564629362                         0    0                 0
##      0.0449831541922517                         0    0                 0
##      0.150208567676068                          0    0                 0
##      0.291704657263826                          0    0                 0
##      0.31263158525612                           0    0                 0
##      0.313581394222809                          0    0                 0
##      0.399450114450523                          0    0                 0
##      0.419739887455571                          0    0                 0
##      0.425358901761228                          0    0                 0
##      0.594035429893685                          0    0                 0
##      0.671638488556335                          0    0                 0
##      0.688092298985074                          0    0                 0
##      0.806600378227794                          0    0                 0
##      0.867455094638368                          0    0                 0
##      0.897003448844096                          0    0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.289583333333333 0.371527777777778
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.409722222222222 0.416666666666667 0.5 0.55625
##      0.000000000123720820519974                 0                 0   0       0
##      0.0000000142143709248919                   0                 0   0       0
##      0.0000000203570784591136                   0                 0   0       0
##      0.0000000942663046181582                   0                 0   0       0
##      0.0381424863643358                         0                 0   0       0
##      0.0395235614826762                         0                 0   0       0
##      0.0398504564629362                         0                 0   0       0
##      0.0449831541922517                         0                 0   0       0
##      0.150208567676068                          0                 0   0       0
##      0.291704657263826                          0                 0   0       0
##      0.31263158525612                           0                 0   0       0
##      0.313581394222809                          0                 0   0       0
##      0.399450114450523                          0                 0   0       0
##      0.419739887455571                          0                 0   0       0
##      0.425358901761228                          0                 0   0       0
##      0.594035429893685                          0                 0   0       0
##      0.671638488556335                          0                 0   0       0
##      0.688092298985074                          0                 0   0       0
##      0.806600378227794                          0                 0   0       0
##      0.867455094638368                          0                 0   0       0
##      0.897003448844096                          0                 0   0       0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.639583333333333 0.907785087701754 1
##      0.000000000123720820519974                 0                 0 0
##      0.0000000142143709248919                   0                 0 0
##      0.0000000203570784591136                   0                 0 0
##      0.0000000942663046181582                   0                 0 0
##      0.0381424863643358                         0                 0 0
##      0.0395235614826762                         0                 0 0
##      0.0398504564629362                         0                 0 0
##      0.0449831541922517                         0                 0 0
##      0.150208567676068                          0                 0 0
##      0.291704657263826                          0                 0 0
##      0.31263158525612                           0                 0 0
##      0.313581394222809                          0                 0 0
##      0.399450114450523                          0                 0 0
##      0.419739887455571                          0                 0 0
##      0.425358901761228                          0                 0 0
##      0.594035429893685                          0                 0 0
##      0.671638488556335                          0                 0 0
##      0.688092298985074                          0                 0 0
##      0.806600378227794                          0                 0 0
##      0.867455094638368                          0                 0 0
##      0.897003448844096                          0                 0 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 1.34930555555556 4.020833333 6.15
##      0.000000000123720820519974                0           0    0
##      0.0000000142143709248919                  0           0    0
##      0.0000000203570784591136                  0           0    0
##      0.0000000942663046181582                  0           0    0
##      0.0381424863643358                        0           0    0
##      0.0395235614826762                        0           0    0
##      0.0398504564629362                        0           0    0
##      0.0449831541922517                        0           0    0
##      0.150208567676068                         0           0    0
##      0.291704657263826                         0           0    0
##      0.31263158525612                          0           0    0
##      0.313581394222809                         0           0    0
##      0.399450114450523                         0           0    0
##      0.419739887455571                         0           0    0
##      0.425358901761228                         0           0    0
##      0.594035429893685                         0           0    0
##      0.671638488556335                         0           0    0
##      0.688092298985074                         0           0    0
##      0.806600378227794                         0           0    0
##      0.867455094638368                         0           0    0
##      0.897003448844096                         0           0    0
## 
## , , OTT_Time = 0, Snapchat_Time = 0.125, Instagram_Time = 0.190972222222222
## 
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.125 0.142361111111111 0.152777777777778
##      0.000000000123720820519974     0                 0                 0
##      0.0000000142143709248919       0                 0                 0
##      0.0000000203570784591136       0                 0                 0
##      0.0000000942663046181582       0                 0                 0
##      0.0381424863643358             0                 0                 0
##      0.0395235614826762             0                 0                 0
##      0.0398504564629362             0                 0                 0
##      0.0449831541922517             0                 0                 0
##      0.150208567676068              0                 0                 0
##      0.291704657263826              0                 0                 0
##      0.31263158525612               0                 0                 0
##      0.313581394222809              0                 0                 0
##      0.399450114450523              0                 0                 0
##      0.419739887455571              0                 0                 0
##      0.425358901761228              0                 0                 0
##      0.594035429893685              0                 0                 0
##      0.671638488556335              0                 0                 0
##      0.688092298985074              0                 0                 0
##      0.806600378227794              0                 0                 0
##      0.867455094638368              0                 0                 0
##      0.897003448844096              0                 0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.174305555555556 0.208333333333333
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.220833333333333 0.25 0.270833333333333
##      0.000000000123720820519974                 0    0                 0
##      0.0000000142143709248919                   0    0                 0
##      0.0000000203570784591136                   0    0                 0
##      0.0000000942663046181582                   0    0                 0
##      0.0381424863643358                         0    0                 0
##      0.0395235614826762                         0    0                 0
##      0.0398504564629362                         0    0                 0
##      0.0449831541922517                         0    0                 0
##      0.150208567676068                          0    0                 0
##      0.291704657263826                          0    0                 0
##      0.31263158525612                           0    0                 0
##      0.313581394222809                          0    0                 0
##      0.399450114450523                          0    0                 0
##      0.419739887455571                          0    0                 0
##      0.425358901761228                          0    0                 0
##      0.594035429893685                          0    0                 0
##      0.671638488556335                          0    0                 0
##      0.688092298985074                          0    0                 0
##      0.806600378227794                          0    0                 0
##      0.867455094638368                          0    0                 0
##      0.897003448844096                          0    0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.289583333333333 0.371527777777778
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.409722222222222 0.416666666666667 0.5 0.55625
##      0.000000000123720820519974                 0                 0   0       0
##      0.0000000142143709248919                   0                 0   0       0
##      0.0000000203570784591136                   0                 0   0       0
##      0.0000000942663046181582                   0                 0   0       0
##      0.0381424863643358                         0                 0   0       0
##      0.0395235614826762                         0                 0   0       0
##      0.0398504564629362                         0                 0   0       0
##      0.0449831541922517                         0                 0   0       0
##      0.150208567676068                          0                 0   0       0
##      0.291704657263826                          0                 0   0       0
##      0.31263158525612                           0                 0   0       0
##      0.313581394222809                          0                 0   0       0
##      0.399450114450523                          0                 0   0       0
##      0.419739887455571                          0                 0   0       0
##      0.425358901761228                          0                 0   0       0
##      0.594035429893685                          0                 0   0       0
##      0.671638488556335                          0                 0   0       0
##      0.688092298985074                          0                 0   0       0
##      0.806600378227794                          0                 0   0       0
##      0.867455094638368                          0                 0   0       0
##      0.897003448844096                          0                 0   0       0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.639583333333333 0.907785087701754 1
##      0.000000000123720820519974                 0                 0 0
##      0.0000000142143709248919                   0                 0 0
##      0.0000000203570784591136                   0                 0 0
##      0.0000000942663046181582                   0                 0 0
##      0.0381424863643358                         0                 0 0
##      0.0395235614826762                         0                 0 0
##      0.0398504564629362                         0                 0 0
##      0.0449831541922517                         0                 0 0
##      0.150208567676068                          0                 0 0
##      0.291704657263826                          0                 0 0
##      0.31263158525612                           0                 0 0
##      0.313581394222809                          0                 0 0
##      0.399450114450523                          0                 0 0
##      0.419739887455571                          0                 0 0
##      0.425358901761228                          0                 0 0
##      0.594035429893685                          0                 0 0
##      0.671638488556335                          0                 0 0
##      0.688092298985074                          0                 0 0
##      0.806600378227794                          0                 0 0
##      0.867455094638368                          0                 0 0
##      0.897003448844096                          0                 0 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 1.34930555555556 4.020833333 6.15
##      0.000000000123720820519974                0           0    0
##      0.0000000142143709248919                  0           0    0
##      0.0000000203570784591136                  0           0    0
##      0.0000000942663046181582                  0           0    0
##      0.0381424863643358                        0           0    0
##      0.0395235614826762                        0           0    0
##      0.0398504564629362                        0           0    0
##      0.0449831541922517                        0           0    0
##      0.150208567676068                         0           0    0
##      0.291704657263826                         0           0    0
##      0.31263158525612                          0           0    0
##      0.313581394222809                         0           0    0
##      0.399450114450523                         0           0    0
##      0.419739887455571                         0           0    0
##      0.425358901761228                         0           0    0
##      0.594035429893685                         0           0    0
##      0.671638488556335                         0           0    0
##      0.688092298985074                         0           0    0
##      0.806600378227794                         0           0    0
##      0.867455094638368                         0           0    0
##      0.897003448844096                         0           0    0
## 
## , , OTT_Time = 0.102777777777778, Snapchat_Time = 0.125, Instagram_Time = 0.190972222222222
## 
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.125 0.142361111111111 0.152777777777778
##      0.000000000123720820519974     0                 0                 0
##      0.0000000142143709248919       0                 0                 0
##      0.0000000203570784591136       0                 0                 0
##      0.0000000942663046181582       0                 0                 0
##      0.0381424863643358             0                 0                 0
##      0.0395235614826762             0                 0                 0
##      0.0398504564629362             0                 0                 0
##      0.0449831541922517             0                 0                 0
##      0.150208567676068              0                 0                 0
##      0.291704657263826              0                 0                 0
##      0.31263158525612               0                 0                 0
##      0.313581394222809              0                 0                 0
##      0.399450114450523              0                 0                 0
##      0.419739887455571              0                 0                 0
##      0.425358901761228              0                 0                 0
##      0.594035429893685              0                 0                 0
##      0.671638488556335              0                 0                 0
##      0.688092298985074              0                 0                 0
##      0.806600378227794              0                 0                 0
##      0.867455094638368              0                 0                 0
##      0.897003448844096              0                 0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.174305555555556 0.208333333333333
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.220833333333333 0.25 0.270833333333333
##      0.000000000123720820519974                 0    0                 0
##      0.0000000142143709248919                   0    0                 0
##      0.0000000203570784591136                   0    0                 0
##      0.0000000942663046181582                   0    0                 0
##      0.0381424863643358                         0    0                 0
##      0.0395235614826762                         0    0                 0
##      0.0398504564629362                         0    0                 0
##      0.0449831541922517                         0    0                 0
##      0.150208567676068                          0    0                 0
##      0.291704657263826                          0    0                 0
##      0.31263158525612                           0    0                 0
##      0.313581394222809                          0    0                 0
##      0.399450114450523                          0    0                 0
##      0.419739887455571                          0    0                 0
##      0.425358901761228                          0    0                 0
##      0.594035429893685                          0    0                 0
##      0.671638488556335                          0    0                 0
##      0.688092298985074                          0    0                 0
##      0.806600378227794                          0    0                 0
##      0.867455094638368                          0    0                 0
##      0.897003448844096                          0    0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.289583333333333 0.371527777777778
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.409722222222222 0.416666666666667 0.5 0.55625
##      0.000000000123720820519974                 0                 0   0       0
##      0.0000000142143709248919                   0                 0   0       0
##      0.0000000203570784591136                   0                 0   0       0
##      0.0000000942663046181582                   0                 0   0       0
##      0.0381424863643358                         0                 0   0       0
##      0.0395235614826762                         0                 0   0       0
##      0.0398504564629362                         0                 0   0       0
##      0.0449831541922517                         0                 0   0       0
##      0.150208567676068                          0                 0   0       0
##      0.291704657263826                          0                 0   0       0
##      0.31263158525612                           0                 0   0       0
##      0.313581394222809                          0                 0   0       0
##      0.399450114450523                          0                 0   0       0
##      0.419739887455571                          0                 0   0       0
##      0.425358901761228                          0                 0   0       0
##      0.594035429893685                          0                 0   0       0
##      0.671638488556335                          0                 0   0       0
##      0.688092298985074                          0                 0   0       0
##      0.806600378227794                          0                 0   0       0
##      0.867455094638368                          0                 0   0       0
##      0.897003448844096                          0                 0   0       0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.639583333333333 0.907785087701754 1
##      0.000000000123720820519974                 0                 0 0
##      0.0000000142143709248919                   0                 0 0
##      0.0000000203570784591136                   0                 0 0
##      0.0000000942663046181582                   0                 0 0
##      0.0381424863643358                         0                 0 0
##      0.0395235614826762                         0                 0 0
##      0.0398504564629362                         0                 0 0
##      0.0449831541922517                         0                 0 0
##      0.150208567676068                          0                 0 0
##      0.291704657263826                          0                 0 0
##      0.31263158525612                           0                 0 0
##      0.313581394222809                          0                 0 0
##      0.399450114450523                          0                 0 0
##      0.419739887455571                          0                 0 0
##      0.425358901761228                          0                 0 0
##      0.594035429893685                          0                 0 0
##      0.671638488556335                          0                 0 0
##      0.688092298985074                          0                 0 0
##      0.806600378227794                          0                 0 0
##      0.867455094638368                          0                 0 0
##      0.897003448844096                          0                 0 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 1.34930555555556 4.020833333 6.15
##      0.000000000123720820519974                0           0    0
##      0.0000000142143709248919                  0           0    0
##      0.0000000203570784591136                  0           0    0
##      0.0000000942663046181582                  0           0    0
##      0.0381424863643358                        0           0    0
##      0.0395235614826762                        0           0    0
##      0.0398504564629362                        0           0    0
##      0.0449831541922517                        0           0    0
##      0.150208567676068                         0           0    0
##      0.291704657263826                         0           0    0
##      0.31263158525612                          0           0    0
##      0.313581394222809                         0           0    0
##      0.399450114450523                         0           0    0
##      0.419739887455571                         0           0    0
##      0.425358901761228                         0           0    0
##      0.594035429893685                         0           0    0
##      0.671638488556335                         0           0    0
##      0.688092298985074                         0           0    0
##      0.806600378227794                         0           0    0
##      0.867455094638368                         0           0    0
##      0.897003448844096                         0           0    0
## 
## , , OTT_Time = 0.125, Snapchat_Time = 0.125, Instagram_Time = 0.190972222222222
## 
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.125 0.142361111111111 0.152777777777778
##      0.000000000123720820519974     0                 0                 0
##      0.0000000142143709248919       0                 0                 0
##      0.0000000203570784591136       0                 0                 0
##      0.0000000942663046181582       0                 0                 0
##      0.0381424863643358             0                 0                 0
##      0.0395235614826762             0                 0                 0
##      0.0398504564629362             0                 0                 0
##      0.0449831541922517             0                 0                 0
##      0.150208567676068              0                 0                 0
##      0.291704657263826              0                 0                 0
##      0.31263158525612               0                 0                 0
##      0.313581394222809              0                 0                 0
##      0.399450114450523              0                 0                 0
##      0.419739887455571              0                 0                 0
##      0.425358901761228              0                 0                 0
##      0.594035429893685              0                 0                 0
##      0.671638488556335              0                 0                 0
##      0.688092298985074              0                 0                 0
##      0.806600378227794              0                 0                 0
##      0.867455094638368              0                 0                 0
##      0.897003448844096              0                 0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.174305555555556 0.208333333333333
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.220833333333333 0.25 0.270833333333333
##      0.000000000123720820519974                 0    0                 0
##      0.0000000142143709248919                   0    0                 0
##      0.0000000203570784591136                   0    0                 0
##      0.0000000942663046181582                   0    0                 0
##      0.0381424863643358                         0    0                 0
##      0.0395235614826762                         0    0                 0
##      0.0398504564629362                         0    0                 0
##      0.0449831541922517                         0    0                 0
##      0.150208567676068                          0    0                 0
##      0.291704657263826                          0    0                 0
##      0.31263158525612                           0    0                 0
##      0.313581394222809                          0    0                 0
##      0.399450114450523                          0    0                 0
##      0.419739887455571                          0    0                 0
##      0.425358901761228                          0    0                 0
##      0.594035429893685                          0    0                 0
##      0.671638488556335                          0    0                 0
##      0.688092298985074                          0    0                 0
##      0.806600378227794                          0    0                 0
##      0.867455094638368                          0    0                 0
##      0.897003448844096                          0    0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.289583333333333 0.371527777777778
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.409722222222222 0.416666666666667 0.5 0.55625
##      0.000000000123720820519974                 0                 0   0       0
##      0.0000000142143709248919                   0                 0   0       0
##      0.0000000203570784591136                   0                 0   0       0
##      0.0000000942663046181582                   0                 0   0       0
##      0.0381424863643358                         0                 0   0       0
##      0.0395235614826762                         0                 0   0       0
##      0.0398504564629362                         0                 0   0       0
##      0.0449831541922517                         0                 0   0       0
##      0.150208567676068                          0                 0   0       0
##      0.291704657263826                          0                 0   0       0
##      0.31263158525612                           0                 0   0       0
##      0.313581394222809                          0                 0   0       0
##      0.399450114450523                          0                 0   0       0
##      0.419739887455571                          0                 0   0       0
##      0.425358901761228                          0                 0   0       0
##      0.594035429893685                          0                 0   0       0
##      0.671638488556335                          0                 0   0       0
##      0.688092298985074                          0                 0   0       0
##      0.806600378227794                          0                 0   0       0
##      0.867455094638368                          0                 0   0       0
##      0.897003448844096                          0                 0   0       0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.639583333333333 0.907785087701754 1
##      0.000000000123720820519974                 0                 0 0
##      0.0000000142143709248919                   0                 0 0
##      0.0000000203570784591136                   0                 0 0
##      0.0000000942663046181582                   0                 0 0
##      0.0381424863643358                         0                 0 0
##      0.0395235614826762                         0                 0 0
##      0.0398504564629362                         0                 0 0
##      0.0449831541922517                         0                 0 0
##      0.150208567676068                          0                 0 0
##      0.291704657263826                          0                 0 0
##      0.31263158525612                           0                 0 0
##      0.313581394222809                          0                 0 0
##      0.399450114450523                          0                 0 0
##      0.419739887455571                          0                 0 0
##      0.425358901761228                          0                 0 0
##      0.594035429893685                          0                 0 0
##      0.671638488556335                          0                 0 0
##      0.688092298985074                          0                 0 0
##      0.806600378227794                          0                 0 0
##      0.867455094638368                          0                 0 0
##      0.897003448844096                          0                 0 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 1.34930555555556 4.020833333 6.15
##      0.000000000123720820519974                0           0    0
##      0.0000000142143709248919                  0           0    0
##      0.0000000203570784591136                  0           0    0
##      0.0000000942663046181582                  0           0    0
##      0.0381424863643358                        0           0    0
##      0.0395235614826762                        0           0    0
##      0.0398504564629362                        0           0    0
##      0.0449831541922517                        0           0    0
##      0.150208567676068                         0           0    0
##      0.291704657263826                         0           0    0
##      0.31263158525612                          0           0    0
##      0.313581394222809                         0           0    0
##      0.399450114450523                         0           0    0
##      0.419739887455571                         0           0    0
##      0.425358901761228                         0           0    0
##      0.594035429893685                         0           0    0
##      0.671638488556335                         0           0    0
##      0.688092298985074                         0           0    0
##      0.806600378227794                         0           0    0
##      0.867455094638368                         0           0    0
##      0.897003448844096                         0           0    0
## 
## , , OTT_Time = 0.416666666666667, Snapchat_Time = 0.125, Instagram_Time = 0.190972222222222
## 
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.125 0.142361111111111 0.152777777777778
##      0.000000000123720820519974     0                 0                 0
##      0.0000000142143709248919       0                 0                 0
##      0.0000000203570784591136       0                 0                 0
##      0.0000000942663046181582       0                 0                 0
##      0.0381424863643358             0                 0                 0
##      0.0395235614826762             0                 0                 0
##      0.0398504564629362             0                 0                 0
##      0.0449831541922517             0                 0                 0
##      0.150208567676068              0                 0                 0
##      0.291704657263826              0                 0                 0
##      0.31263158525612               0                 0                 0
##      0.313581394222809              0                 0                 0
##      0.399450114450523              0                 0                 0
##      0.419739887455571              0                 0                 0
##      0.425358901761228              0                 0                 0
##      0.594035429893685              0                 0                 0
##      0.671638488556335              0                 0                 0
##      0.688092298985074              0                 0                 0
##      0.806600378227794              0                 0                 0
##      0.867455094638368              0                 0                 0
##      0.897003448844096              0                 0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.174305555555556 0.208333333333333
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.220833333333333 0.25 0.270833333333333
##      0.000000000123720820519974                 0    0                 0
##      0.0000000142143709248919                   0    0                 0
##      0.0000000203570784591136                   0    0                 0
##      0.0000000942663046181582                   0    0                 0
##      0.0381424863643358                         0    0                 0
##      0.0395235614826762                         0    0                 0
##      0.0398504564629362                         0    0                 0
##      0.0449831541922517                         0    0                 0
##      0.150208567676068                          0    0                 0
##      0.291704657263826                          0    0                 0
##      0.31263158525612                           0    0                 0
##      0.313581394222809                          0    0                 0
##      0.399450114450523                          0    0                 0
##      0.419739887455571                          0    0                 0
##      0.425358901761228                          0    0                 0
##      0.594035429893685                          0    0                 0
##      0.671638488556335                          0    0                 0
##      0.688092298985074                          0    0                 0
##      0.806600378227794                          0    0                 0
##      0.867455094638368                          0    0                 0
##      0.897003448844096                          0    0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.289583333333333 0.371527777777778
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.409722222222222 0.416666666666667 0.5 0.55625
##      0.000000000123720820519974                 0                 0   0       0
##      0.0000000142143709248919                   0                 0   0       0
##      0.0000000203570784591136                   0                 0   0       0
##      0.0000000942663046181582                   0                 0   0       0
##      0.0381424863643358                         0                 0   0       0
##      0.0395235614826762                         0                 0   0       0
##      0.0398504564629362                         0                 0   0       0
##      0.0449831541922517                         0                 0   0       0
##      0.150208567676068                          0                 0   0       0
##      0.291704657263826                          0                 0   0       0
##      0.31263158525612                           0                 0   0       0
##      0.313581394222809                          0                 0   0       0
##      0.399450114450523                          0                 0   0       0
##      0.419739887455571                          0                 0   0       0
##      0.425358901761228                          0                 0   0       0
##      0.594035429893685                          0                 0   0       0
##      0.671638488556335                          0                 0   0       0
##      0.688092298985074                          0                 0   0       0
##      0.806600378227794                          0                 0   0       0
##      0.867455094638368                          0                 0   0       0
##      0.897003448844096                          0                 0   0       0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.639583333333333 0.907785087701754 1
##      0.000000000123720820519974                 0                 0 0
##      0.0000000142143709248919                   0                 0 0
##      0.0000000203570784591136                   0                 0 0
##      0.0000000942663046181582                   0                 0 0
##      0.0381424863643358                         0                 0 0
##      0.0395235614826762                         0                 0 0
##      0.0398504564629362                         0                 0 0
##      0.0449831541922517                         0                 0 0
##      0.150208567676068                          0                 0 0
##      0.291704657263826                          0                 0 0
##      0.31263158525612                           0                 0 0
##      0.313581394222809                          0                 0 0
##      0.399450114450523                          0                 0 0
##      0.419739887455571                          0                 0 0
##      0.425358901761228                          0                 0 0
##      0.594035429893685                          0                 0 0
##      0.671638488556335                          0                 0 0
##      0.688092298985074                          0                 0 0
##      0.806600378227794                          0                 0 0
##      0.867455094638368                          0                 0 0
##      0.897003448844096                          0                 0 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 1.34930555555556 4.020833333 6.15
##      0.000000000123720820519974                0           0    0
##      0.0000000142143709248919                  0           0    0
##      0.0000000203570784591136                  0           0    0
##      0.0000000942663046181582                  0           0    0
##      0.0381424863643358                        0           0    0
##      0.0395235614826762                        0           0    0
##      0.0398504564629362                        0           0    0
##      0.0449831541922517                        0           0    0
##      0.150208567676068                         0           0    0
##      0.291704657263826                         0           0    0
##      0.31263158525612                          0           0    0
##      0.313581394222809                         0           0    0
##      0.399450114450523                         0           0    0
##      0.419739887455571                         0           0    0
##      0.425358901761228                         0           0    0
##      0.594035429893685                         0           0    0
##      0.671638488556335                         0           0    0
##      0.688092298985074                         0           0    0
##      0.806600378227794                         0           0    0
##      0.867455094638368                         0           0    0
##      0.897003448844096                         0           0    0
## 
## , , OTT_Time = 0.5104166667, Snapchat_Time = 0.125, Instagram_Time = 0.190972222222222
## 
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.125 0.142361111111111 0.152777777777778
##      0.000000000123720820519974     0                 0                 0
##      0.0000000142143709248919       0                 0                 0
##      0.0000000203570784591136       0                 0                 0
##      0.0000000942663046181582       0                 0                 0
##      0.0381424863643358             0                 0                 0
##      0.0395235614826762             0                 0                 0
##      0.0398504564629362             0                 0                 0
##      0.0449831541922517             0                 0                 0
##      0.150208567676068              0                 0                 0
##      0.291704657263826              0                 0                 0
##      0.31263158525612               0                 0                 0
##      0.313581394222809              0                 0                 0
##      0.399450114450523              0                 0                 0
##      0.419739887455571              0                 0                 0
##      0.425358901761228              0                 0                 0
##      0.594035429893685              0                 0                 0
##      0.671638488556335              0                 0                 0
##      0.688092298985074              0                 0                 0
##      0.806600378227794              0                 0                 0
##      0.867455094638368              0                 0                 0
##      0.897003448844096              0                 0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.174305555555556 0.208333333333333
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.220833333333333 0.25 0.270833333333333
##      0.000000000123720820519974                 0    0                 0
##      0.0000000142143709248919                   0    0                 0
##      0.0000000203570784591136                   0    0                 0
##      0.0000000942663046181582                   0    0                 0
##      0.0381424863643358                         0    0                 0
##      0.0395235614826762                         0    0                 0
##      0.0398504564629362                         0    0                 0
##      0.0449831541922517                         0    0                 0
##      0.150208567676068                          0    0                 0
##      0.291704657263826                          0    0                 0
##      0.31263158525612                           0    0                 0
##      0.313581394222809                          0    0                 0
##      0.399450114450523                          0    0                 0
##      0.419739887455571                          0    0                 0
##      0.425358901761228                          0    0                 0
##      0.594035429893685                          0    0                 0
##      0.671638488556335                          0    0                 0
##      0.688092298985074                          0    0                 0
##      0.806600378227794                          0    0                 0
##      0.867455094638368                          0    0                 0
##      0.897003448844096                          0    0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.289583333333333 0.371527777777778
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.409722222222222 0.416666666666667 0.5 0.55625
##      0.000000000123720820519974                 0                 0   0       0
##      0.0000000142143709248919                   0                 0   0       0
##      0.0000000203570784591136                   0                 0   0       0
##      0.0000000942663046181582                   0                 0   0       0
##      0.0381424863643358                         0                 0   0       0
##      0.0395235614826762                         0                 0   0       0
##      0.0398504564629362                         0                 0   0       0
##      0.0449831541922517                         0                 0   0       0
##      0.150208567676068                          0                 0   0       0
##      0.291704657263826                          0                 0   0       0
##      0.31263158525612                           0                 0   0       0
##      0.313581394222809                          0                 0   0       0
##      0.399450114450523                          0                 0   0       0
##      0.419739887455571                          0                 0   0       0
##      0.425358901761228                          0                 0   0       0
##      0.594035429893685                          0                 0   0       0
##      0.671638488556335                          0                 0   0       0
##      0.688092298985074                          0                 0   0       0
##      0.806600378227794                          0                 0   0       0
##      0.867455094638368                          0                 0   0       0
##      0.897003448844096                          0                 0   0       0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.639583333333333 0.907785087701754 1
##      0.000000000123720820519974                 0                 0 0
##      0.0000000142143709248919                   0                 0 0
##      0.0000000203570784591136                   0                 0 0
##      0.0000000942663046181582                   0                 0 0
##      0.0381424863643358                         0                 0 0
##      0.0395235614826762                         0                 0 0
##      0.0398504564629362                         0                 0 0
##      0.0449831541922517                         0                 0 0
##      0.150208567676068                          0                 0 0
##      0.291704657263826                          0                 0 0
##      0.31263158525612                           0                 0 0
##      0.313581394222809                          0                 0 0
##      0.399450114450523                          0                 0 0
##      0.419739887455571                          0                 0 0
##      0.425358901761228                          0                 0 0
##      0.594035429893685                          0                 0 0
##      0.671638488556335                          0                 0 0
##      0.688092298985074                          0                 0 0
##      0.806600378227794                          0                 0 0
##      0.867455094638368                          0                 0 0
##      0.897003448844096                          0                 0 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 1.34930555555556 4.020833333 6.15
##      0.000000000123720820519974                0           0    0
##      0.0000000142143709248919                  0           0    0
##      0.0000000203570784591136                  0           0    0
##      0.0000000942663046181582                  0           0    0
##      0.0381424863643358                        0           0    0
##      0.0395235614826762                        0           0    0
##      0.0398504564629362                        0           0    0
##      0.0449831541922517                        0           0    0
##      0.150208567676068                         0           0    0
##      0.291704657263826                         0           0    0
##      0.31263158525612                          0           0    0
##      0.313581394222809                         0           0    0
##      0.399450114450523                         0           0    0
##      0.419739887455571                         0           0    0
##      0.425358901761228                         0           0    0
##      0.594035429893685                         0           0    0
##      0.671638488556335                         0           0    0
##      0.688092298985074                         0           0    0
##      0.806600378227794                         0           0    0
##      0.867455094638368                         0           0    0
##      0.897003448844096                         0           0    0
## 
## , , OTT_Time = 1.44460470085726, Snapchat_Time = 0.125, Instagram_Time = 0.190972222222222
## 
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.125 0.142361111111111 0.152777777777778
##      0.000000000123720820519974     0                 0                 0
##      0.0000000142143709248919       0                 0                 0
##      0.0000000203570784591136       0                 0                 0
##      0.0000000942663046181582       0                 0                 0
##      0.0381424863643358             0                 0                 0
##      0.0395235614826762             0                 0                 0
##      0.0398504564629362             0                 0                 0
##      0.0449831541922517             0                 0                 0
##      0.150208567676068              0                 0                 0
##      0.291704657263826              0                 0                 0
##      0.31263158525612               0                 0                 0
##      0.313581394222809              0                 0                 0
##      0.399450114450523              0                 0                 0
##      0.419739887455571              0                 0                 0
##      0.425358901761228              0                 0                 0
##      0.594035429893685              0                 0                 0
##      0.671638488556335              0                 0                 0
##      0.688092298985074              0                 0                 0
##      0.806600378227794              0                 0                 0
##      0.867455094638368              0                 0                 0
##      0.897003448844096              0                 0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.174305555555556 0.208333333333333
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.220833333333333 0.25 0.270833333333333
##      0.000000000123720820519974                 0    0                 0
##      0.0000000142143709248919                   0    0                 0
##      0.0000000203570784591136                   0    0                 0
##      0.0000000942663046181582                   0    0                 0
##      0.0381424863643358                         0    0                 0
##      0.0395235614826762                         0    0                 0
##      0.0398504564629362                         0    0                 0
##      0.0449831541922517                         0    0                 0
##      0.150208567676068                          0    0                 0
##      0.291704657263826                          0    0                 0
##      0.31263158525612                           0    0                 0
##      0.313581394222809                          0    0                 0
##      0.399450114450523                          0    0                 0
##      0.419739887455571                          0    0                 0
##      0.425358901761228                          0    0                 0
##      0.594035429893685                          0    0                 0
##      0.671638488556335                          0    0                 0
##      0.688092298985074                          0    0                 0
##      0.806600378227794                          0    0                 0
##      0.867455094638368                          0    0                 0
##      0.897003448844096                          0    0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.289583333333333 0.371527777777778
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.409722222222222 0.416666666666667 0.5 0.55625
##      0.000000000123720820519974                 0                 0   0       0
##      0.0000000142143709248919                   0                 0   0       0
##      0.0000000203570784591136                   0                 0   0       0
##      0.0000000942663046181582                   0                 0   0       0
##      0.0381424863643358                         0                 0   0       0
##      0.0395235614826762                         0                 0   0       0
##      0.0398504564629362                         0                 0   0       0
##      0.0449831541922517                         0                 0   0       0
##      0.150208567676068                          0                 0   0       0
##      0.291704657263826                          0                 0   0       0
##      0.31263158525612                           0                 0   0       0
##      0.313581394222809                          0                 0   0       0
##      0.399450114450523                          0                 0   0       0
##      0.419739887455571                          0                 0   0       0
##      0.425358901761228                          0                 0   0       0
##      0.594035429893685                          0                 0   0       0
##      0.671638488556335                          0                 0   0       0
##      0.688092298985074                          0                 0   0       0
##      0.806600378227794                          0                 0   0       0
##      0.867455094638368                          0                 0   0       0
##      0.897003448844096                          0                 0   0       0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.639583333333333 0.907785087701754 1
##      0.000000000123720820519974                 0                 0 0
##      0.0000000142143709248919                   0                 0 0
##      0.0000000203570784591136                   0                 0 0
##      0.0000000942663046181582                   0                 0 0
##      0.0381424863643358                         0                 0 0
##      0.0395235614826762                         0                 0 0
##      0.0398504564629362                         0                 0 0
##      0.0449831541922517                         0                 0 0
##      0.150208567676068                          0                 0 0
##      0.291704657263826                          0                 0 0
##      0.31263158525612                           0                 0 0
##      0.313581394222809                          0                 0 0
##      0.399450114450523                          0                 0 0
##      0.419739887455571                          0                 0 0
##      0.425358901761228                          0                 0 0
##      0.594035429893685                          0                 0 0
##      0.671638488556335                          0                 0 0
##      0.688092298985074                          0                 0 0
##      0.806600378227794                          0                 0 0
##      0.867455094638368                          0                 0 0
##      0.897003448844096                          0                 0 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 1.34930555555556 4.020833333 6.15
##      0.000000000123720820519974                0           0    0
##      0.0000000142143709248919                  0           0    0
##      0.0000000203570784591136                  0           0    0
##      0.0000000942663046181582                  0           0    0
##      0.0381424863643358                        0           0    0
##      0.0395235614826762                        0           0    0
##      0.0398504564629362                        0           0    0
##      0.0449831541922517                        0           0    0
##      0.150208567676068                         0           0    0
##      0.291704657263826                         0           0    0
##      0.31263158525612                          0           0    0
##      0.313581394222809                         0           0    0
##      0.399450114450523                         0           0    0
##      0.419739887455571                         0           0    0
##      0.425358901761228                         0           0    0
##      0.594035429893685                         0           0    0
##      0.671638488556335                         0           0    0
##      0.688092298985074                         0           0    0
##      0.806600378227794                         0           0    0
##      0.867455094638368                         0           0    0
##      0.897003448844096                         0           0    0
## 
## , , OTT_Time = 3, Snapchat_Time = 0.125, Instagram_Time = 0.190972222222222
## 
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.125 0.142361111111111 0.152777777777778
##      0.000000000123720820519974     0                 0                 0
##      0.0000000142143709248919       0                 0                 0
##      0.0000000203570784591136       0                 0                 0
##      0.0000000942663046181582       0                 0                 0
##      0.0381424863643358             0                 0                 0
##      0.0395235614826762             0                 0                 0
##      0.0398504564629362             0                 0                 0
##      0.0449831541922517             0                 0                 0
##      0.150208567676068              0                 0                 0
##      0.291704657263826              0                 0                 0
##      0.31263158525612               0                 0                 0
##      0.313581394222809              0                 0                 0
##      0.399450114450523              0                 0                 0
##      0.419739887455571              0                 0                 0
##      0.425358901761228              0                 0                 0
##      0.594035429893685              0                 0                 0
##      0.671638488556335              0                 0                 0
##      0.688092298985074              0                 0                 0
##      0.806600378227794              0                 0                 0
##      0.867455094638368              0                 0                 0
##      0.897003448844096              0                 0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.174305555555556 0.208333333333333
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.220833333333333 0.25 0.270833333333333
##      0.000000000123720820519974                 0    0                 0
##      0.0000000142143709248919                   0    0                 0
##      0.0000000203570784591136                   0    0                 0
##      0.0000000942663046181582                   0    0                 0
##      0.0381424863643358                         0    0                 0
##      0.0395235614826762                         0    0                 0
##      0.0398504564629362                         0    0                 0
##      0.0449831541922517                         0    0                 0
##      0.150208567676068                          0    0                 0
##      0.291704657263826                          0    0                 0
##      0.31263158525612                           0    0                 0
##      0.313581394222809                          0    0                 0
##      0.399450114450523                          0    0                 0
##      0.419739887455571                          0    0                 0
##      0.425358901761228                          0    0                 0
##      0.594035429893685                          0    0                 0
##      0.671638488556335                          0    0                 0
##      0.688092298985074                          0    0                 0
##      0.806600378227794                          0    0                 0
##      0.867455094638368                          0    0                 0
##      0.897003448844096                          0    0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.289583333333333 0.371527777777778
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.409722222222222 0.416666666666667 0.5 0.55625
##      0.000000000123720820519974                 0                 0   0       0
##      0.0000000142143709248919                   0                 0   0       0
##      0.0000000203570784591136                   0                 0   0       0
##      0.0000000942663046181582                   0                 0   0       0
##      0.0381424863643358                         0                 0   0       0
##      0.0395235614826762                         0                 0   0       0
##      0.0398504564629362                         0                 0   0       0
##      0.0449831541922517                         0                 0   0       0
##      0.150208567676068                          0                 0   0       0
##      0.291704657263826                          0                 0   0       0
##      0.31263158525612                           0                 0   0       0
##      0.313581394222809                          0                 0   0       0
##      0.399450114450523                          0                 0   0       0
##      0.419739887455571                          0                 0   0       0
##      0.425358901761228                          0                 0   0       0
##      0.594035429893685                          0                 0   0       0
##      0.671638488556335                          0                 0   0       0
##      0.688092298985074                          0                 0   0       0
##      0.806600378227794                          0                 0   0       0
##      0.867455094638368                          0                 0   0       0
##      0.897003448844096                          0                 0   0       0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.639583333333333 0.907785087701754 1
##      0.000000000123720820519974                 0                 0 0
##      0.0000000142143709248919                   0                 0 0
##      0.0000000203570784591136                   0                 0 0
##      0.0000000942663046181582                   0                 0 0
##      0.0381424863643358                         0                 0 0
##      0.0395235614826762                         0                 0 0
##      0.0398504564629362                         0                 0 0
##      0.0449831541922517                         0                 0 0
##      0.150208567676068                          0                 0 0
##      0.291704657263826                          0                 0 0
##      0.31263158525612                           0                 0 0
##      0.313581394222809                          0                 0 0
##      0.399450114450523                          0                 0 0
##      0.419739887455571                          0                 0 0
##      0.425358901761228                          0                 0 0
##      0.594035429893685                          0                 0 0
##      0.671638488556335                          0                 0 0
##      0.688092298985074                          0                 0 0
##      0.806600378227794                          0                 0 0
##      0.867455094638368                          0                 0 0
##      0.897003448844096                          0                 0 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 1.34930555555556 4.020833333 6.15
##      0.000000000123720820519974                0           0    0
##      0.0000000142143709248919                  0           0    0
##      0.0000000203570784591136                  0           0    0
##      0.0000000942663046181582                  0           0    0
##      0.0381424863643358                        0           0    0
##      0.0395235614826762                        0           0    0
##      0.0398504564629362                        0           0    0
##      0.0449831541922517                        0           0    0
##      0.150208567676068                         0           0    0
##      0.291704657263826                         0           0    0
##      0.31263158525612                          0           0    0
##      0.313581394222809                         0           0    0
##      0.399450114450523                         0           0    0
##      0.419739887455571                         0           0    0
##      0.425358901761228                         0           0    0
##      0.594035429893685                         0           0    0
##      0.671638488556335                         0           0    0
##      0.688092298985074                         0           0    0
##      0.806600378227794                         0           0    0
##      0.867455094638368                         0           0    0
##      0.897003448844096                         0           0    0
## 
## , , OTT_Time = 14.5, Snapchat_Time = 0.125, Instagram_Time = 0.190972222222222
## 
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.125 0.142361111111111 0.152777777777778
##      0.000000000123720820519974     0                 0                 0
##      0.0000000142143709248919       0                 0                 0
##      0.0000000203570784591136       0                 0                 0
##      0.0000000942663046181582       0                 0                 0
##      0.0381424863643358             0                 0                 0
##      0.0395235614826762             0                 0                 0
##      0.0398504564629362             0                 0                 0
##      0.0449831541922517             0                 0                 0
##      0.150208567676068              0                 0                 0
##      0.291704657263826              0                 0                 0
##      0.31263158525612               0                 0                 0
##      0.313581394222809              0                 0                 0
##      0.399450114450523              0                 0                 0
##      0.419739887455571              0                 0                 0
##      0.425358901761228              0                 0                 0
##      0.594035429893685              0                 0                 0
##      0.671638488556335              0                 0                 0
##      0.688092298985074              0                 0                 0
##      0.806600378227794              0                 0                 0
##      0.867455094638368              0                 0                 0
##      0.897003448844096              0                 0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.174305555555556 0.208333333333333
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.220833333333333 0.25 0.270833333333333
##      0.000000000123720820519974                 0    0                 0
##      0.0000000142143709248919                   0    0                 0
##      0.0000000203570784591136                   0    0                 0
##      0.0000000942663046181582                   0    0                 0
##      0.0381424863643358                         0    0                 0
##      0.0395235614826762                         0    0                 0
##      0.0398504564629362                         0    0                 0
##      0.0449831541922517                         0    0                 0
##      0.150208567676068                          0    0                 0
##      0.291704657263826                          0    0                 0
##      0.31263158525612                           0    0                 0
##      0.313581394222809                          0    0                 0
##      0.399450114450523                          0    0                 0
##      0.419739887455571                          0    0                 0
##      0.425358901761228                          0    0                 0
##      0.594035429893685                          0    0                 0
##      0.671638488556335                          0    0                 0
##      0.688092298985074                          0    0                 0
##      0.806600378227794                          0    0                 0
##      0.867455094638368                          0    0                 0
##      0.897003448844096                          0    0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.289583333333333 0.371527777777778
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.409722222222222 0.416666666666667 0.5 0.55625
##      0.000000000123720820519974                 0                 0   0       0
##      0.0000000142143709248919                   0                 0   0       0
##      0.0000000203570784591136                   0                 0   0       0
##      0.0000000942663046181582                   0                 0   0       0
##      0.0381424863643358                         0                 0   0       0
##      0.0395235614826762                         0                 0   0       0
##      0.0398504564629362                         0                 0   0       0
##      0.0449831541922517                         0                 0   0       0
##      0.150208567676068                          0                 0   0       0
##      0.291704657263826                          0                 0   0       0
##      0.31263158525612                           0                 0   0       0
##      0.313581394222809                          0                 0   0       0
##      0.399450114450523                          0                 0   0       0
##      0.419739887455571                          0                 0   0       0
##      0.425358901761228                          0                 0   0       0
##      0.594035429893685                          0                 0   0       0
##      0.671638488556335                          0                 0   0       0
##      0.688092298985074                          0                 0   0       0
##      0.806600378227794                          0                 0   0       0
##      0.867455094638368                          0                 0   0       0
##      0.897003448844096                          0                 0   0       0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.639583333333333 0.907785087701754 1
##      0.000000000123720820519974                 0                 0 0
##      0.0000000142143709248919                   0                 0 0
##      0.0000000203570784591136                   0                 0 0
##      0.0000000942663046181582                   0                 0 0
##      0.0381424863643358                         0                 0 0
##      0.0395235614826762                         0                 0 0
##      0.0398504564629362                         0                 0 0
##      0.0449831541922517                         0                 0 0
##      0.150208567676068                          0                 0 0
##      0.291704657263826                          0                 0 0
##      0.31263158525612                           0                 0 0
##      0.313581394222809                          0                 0 0
##      0.399450114450523                          0                 0 0
##      0.419739887455571                          0                 0 0
##      0.425358901761228                          0                 0 0
##      0.594035429893685                          0                 0 0
##      0.671638488556335                          0                 0 0
##      0.688092298985074                          0                 0 0
##      0.806600378227794                          0                 0 0
##      0.867455094638368                          0                 0 0
##      0.897003448844096                          0                 0 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 1.34930555555556 4.020833333 6.15
##      0.000000000123720820519974                0           0    0
##      0.0000000142143709248919                  0           0    0
##      0.0000000203570784591136                  0           0    0
##      0.0000000942663046181582                  0           0    0
##      0.0381424863643358                        0           0    0
##      0.0395235614826762                        0           0    0
##      0.0398504564629362                        0           0    0
##      0.0449831541922517                        0           0    0
##      0.150208567676068                         0           0    0
##      0.291704657263826                         0           0    0
##      0.31263158525612                          0           0    0
##      0.313581394222809                         0           0    0
##      0.399450114450523                         0           0    0
##      0.419739887455571                         0           0    0
##      0.425358901761228                         0           0    0
##      0.594035429893685                         0           0    0
##      0.671638488556335                         0           0    0
##      0.688092298985074                         0           0    0
##      0.806600378227794                         0           0    0
##      0.867455094638368                         0           0    0
##      0.897003448844096                         0           0    0
## 
## , , OTT_Time = 0, Snapchat_Time = 0.153472222222222, Instagram_Time = 0.190972222222222
## 
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.125 0.142361111111111 0.152777777777778
##      0.000000000123720820519974     0                 0                 0
##      0.0000000142143709248919       0                 0                 0
##      0.0000000203570784591136       0                 0                 0
##      0.0000000942663046181582       0                 0                 0
##      0.0381424863643358             0                 0                 0
##      0.0395235614826762             0                 0                 0
##      0.0398504564629362             0                 0                 0
##      0.0449831541922517             0                 0                 0
##      0.150208567676068              0                 0                 0
##      0.291704657263826              0                 0                 0
##      0.31263158525612               0                 0                 0
##      0.313581394222809              0                 0                 0
##      0.399450114450523              0                 0                 0
##      0.419739887455571              0                 0                 0
##      0.425358901761228              0                 0                 0
##      0.594035429893685              0                 0                 0
##      0.671638488556335              0                 0                 0
##      0.688092298985074              0                 0                 0
##      0.806600378227794              0                 0                 0
##      0.867455094638368              0                 0                 0
##      0.897003448844096              0                 0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.174305555555556 0.208333333333333
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.220833333333333 0.25 0.270833333333333
##      0.000000000123720820519974                 0    0                 0
##      0.0000000142143709248919                   0    0                 0
##      0.0000000203570784591136                   0    0                 0
##      0.0000000942663046181582                   0    0                 0
##      0.0381424863643358                         0    0                 0
##      0.0395235614826762                         0    0                 0
##      0.0398504564629362                         0    0                 0
##      0.0449831541922517                         0    0                 0
##      0.150208567676068                          0    0                 0
##      0.291704657263826                          0    0                 0
##      0.31263158525612                           0    0                 0
##      0.313581394222809                          0    0                 0
##      0.399450114450523                          0    0                 0
##      0.419739887455571                          0    0                 0
##      0.425358901761228                          0    0                 0
##      0.594035429893685                          0    0                 0
##      0.671638488556335                          0    0                 0
##      0.688092298985074                          0    0                 0
##      0.806600378227794                          0    0                 0
##      0.867455094638368                          0    0                 0
##      0.897003448844096                          0    0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.289583333333333 0.371527777777778
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.409722222222222 0.416666666666667 0.5 0.55625
##      0.000000000123720820519974                 0                 0   0       0
##      0.0000000142143709248919                   0                 0   0       0
##      0.0000000203570784591136                   0                 0   0       0
##      0.0000000942663046181582                   0                 0   0       0
##      0.0381424863643358                         0                 0   0       0
##      0.0395235614826762                         0                 0   0       0
##      0.0398504564629362                         0                 0   0       0
##      0.0449831541922517                         0                 0   0       0
##      0.150208567676068                          0                 0   0       0
##      0.291704657263826                          0                 0   0       0
##      0.31263158525612                           0                 0   0       0
##      0.313581394222809                          0                 0   0       0
##      0.399450114450523                          0                 0   0       0
##      0.419739887455571                          0                 0   0       0
##      0.425358901761228                          0                 0   0       0
##      0.594035429893685                          0                 0   0       0
##      0.671638488556335                          0                 0   0       0
##      0.688092298985074                          0                 0   0       0
##      0.806600378227794                          0                 0   0       0
##      0.867455094638368                          0                 0   0       0
##      0.897003448844096                          0                 0   0       0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.639583333333333 0.907785087701754 1
##      0.000000000123720820519974                 0                 0 0
##      0.0000000142143709248919                   0                 0 0
##      0.0000000203570784591136                   0                 0 0
##      0.0000000942663046181582                   0                 0 0
##      0.0381424863643358                         0                 0 0
##      0.0395235614826762                         0                 0 0
##      0.0398504564629362                         0                 0 0
##      0.0449831541922517                         0                 0 0
##      0.150208567676068                          0                 0 0
##      0.291704657263826                          0                 0 0
##      0.31263158525612                           0                 0 0
##      0.313581394222809                          0                 0 0
##      0.399450114450523                          0                 0 0
##      0.419739887455571                          0                 0 0
##      0.425358901761228                          0                 0 0
##      0.594035429893685                          0                 0 0
##      0.671638488556335                          0                 0 0
##      0.688092298985074                          0                 0 0
##      0.806600378227794                          0                 0 0
##      0.867455094638368                          0                 0 0
##      0.897003448844096                          0                 0 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 1.34930555555556 4.020833333 6.15
##      0.000000000123720820519974                0           0    0
##      0.0000000142143709248919                  0           0    0
##      0.0000000203570784591136                  0           0    0
##      0.0000000942663046181582                  0           0    0
##      0.0381424863643358                        0           0    0
##      0.0395235614826762                        0           0    0
##      0.0398504564629362                        0           0    0
##      0.0449831541922517                        0           0    0
##      0.150208567676068                         0           0    0
##      0.291704657263826                         0           0    0
##      0.31263158525612                          0           0    0
##      0.313581394222809                         0           0    0
##      0.399450114450523                         0           0    0
##      0.419739887455571                         0           0    0
##      0.425358901761228                         0           0    0
##      0.594035429893685                         0           0    0
##      0.671638488556335                         0           0    0
##      0.688092298985074                         0           0    0
##      0.806600378227794                         0           0    0
##      0.867455094638368                         0           0    0
##      0.897003448844096                         0           0    0
## 
## , , OTT_Time = 0.102777777777778, Snapchat_Time = 0.153472222222222, Instagram_Time = 0.190972222222222
## 
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.125 0.142361111111111 0.152777777777778
##      0.000000000123720820519974     0                 0                 0
##      0.0000000142143709248919       0                 0                 0
##      0.0000000203570784591136       0                 0                 0
##      0.0000000942663046181582       0                 0                 0
##      0.0381424863643358             0                 0                 0
##      0.0395235614826762             0                 0                 0
##      0.0398504564629362             0                 0                 0
##      0.0449831541922517             0                 0                 0
##      0.150208567676068              0                 0                 0
##      0.291704657263826              0                 0                 0
##      0.31263158525612               0                 0                 0
##      0.313581394222809              0                 0                 0
##      0.399450114450523              0                 0                 0
##      0.419739887455571              0                 0                 0
##      0.425358901761228              0                 0                 0
##      0.594035429893685              0                 0                 0
##      0.671638488556335              0                 0                 0
##      0.688092298985074              0                 0                 0
##      0.806600378227794              0                 0                 0
##      0.867455094638368              0                 0                 0
##      0.897003448844096              0                 0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.174305555555556 0.208333333333333
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.220833333333333 0.25 0.270833333333333
##      0.000000000123720820519974                 0    0                 0
##      0.0000000142143709248919                   0    0                 0
##      0.0000000203570784591136                   0    0                 0
##      0.0000000942663046181582                   0    0                 0
##      0.0381424863643358                         0    0                 0
##      0.0395235614826762                         0    0                 0
##      0.0398504564629362                         0    0                 0
##      0.0449831541922517                         0    0                 0
##      0.150208567676068                          0    0                 0
##      0.291704657263826                          0    0                 0
##      0.31263158525612                           0    0                 0
##      0.313581394222809                          0    0                 0
##      0.399450114450523                          0    0                 0
##      0.419739887455571                          0    0                 0
##      0.425358901761228                          0    0                 0
##      0.594035429893685                          0    0                 0
##      0.671638488556335                          0    0                 0
##      0.688092298985074                          0    0                 0
##      0.806600378227794                          0    0                 0
##      0.867455094638368                          0    0                 0
##      0.897003448844096                          0    0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.289583333333333 0.371527777777778
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.409722222222222 0.416666666666667 0.5 0.55625
##      0.000000000123720820519974                 0                 0   0       0
##      0.0000000142143709248919                   0                 0   0       0
##      0.0000000203570784591136                   0                 0   0       0
##      0.0000000942663046181582                   0                 0   0       0
##      0.0381424863643358                         0                 0   0       0
##      0.0395235614826762                         0                 0   0       0
##      0.0398504564629362                         0                 0   0       0
##      0.0449831541922517                         0                 0   0       0
##      0.150208567676068                          0                 0   0       0
##      0.291704657263826                          0                 0   0       0
##      0.31263158525612                           0                 0   0       0
##      0.313581394222809                          0                 0   0       0
##      0.399450114450523                          0                 0   0       0
##      0.419739887455571                          0                 0   0       0
##      0.425358901761228                          0                 0   0       0
##      0.594035429893685                          0                 0   0       0
##      0.671638488556335                          0                 0   0       0
##      0.688092298985074                          0                 0   0       0
##      0.806600378227794                          0                 0   0       0
##      0.867455094638368                          0                 0   0       0
##      0.897003448844096                          0                 0   0       0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.639583333333333 0.907785087701754 1
##      0.000000000123720820519974                 0                 0 0
##      0.0000000142143709248919                   0                 0 0
##      0.0000000203570784591136                   0                 0 0
##      0.0000000942663046181582                   0                 0 0
##      0.0381424863643358                         0                 0 0
##      0.0395235614826762                         0                 0 0
##      0.0398504564629362                         0                 0 0
##      0.0449831541922517                         0                 0 0
##      0.150208567676068                          0                 0 0
##      0.291704657263826                          0                 0 0
##      0.31263158525612                           0                 0 0
##      0.313581394222809                          0                 0 0
##      0.399450114450523                          0                 0 0
##      0.419739887455571                          0                 0 0
##      0.425358901761228                          0                 0 0
##      0.594035429893685                          0                 0 0
##      0.671638488556335                          0                 0 0
##      0.688092298985074                          0                 0 0
##      0.806600378227794                          0                 0 0
##      0.867455094638368                          0                 0 0
##      0.897003448844096                          0                 0 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 1.34930555555556 4.020833333 6.15
##      0.000000000123720820519974                0           0    0
##      0.0000000142143709248919                  0           0    0
##      0.0000000203570784591136                  0           0    0
##      0.0000000942663046181582                  0           0    0
##      0.0381424863643358                        0           0    0
##      0.0395235614826762                        0           0    0
##      0.0398504564629362                        0           0    0
##      0.0449831541922517                        0           0    0
##      0.150208567676068                         0           0    0
##      0.291704657263826                         0           0    0
##      0.31263158525612                          0           0    0
##      0.313581394222809                         0           0    0
##      0.399450114450523                         0           0    0
##      0.419739887455571                         0           0    0
##      0.425358901761228                         0           0    0
##      0.594035429893685                         0           0    0
##      0.671638488556335                         0           0    0
##      0.688092298985074                         0           0    0
##      0.806600378227794                         0           0    0
##      0.867455094638368                         0           0    0
##      0.897003448844096                         0           0    0
## 
## , , OTT_Time = 0.125, Snapchat_Time = 0.153472222222222, Instagram_Time = 0.190972222222222
## 
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.125 0.142361111111111 0.152777777777778
##      0.000000000123720820519974     0                 0                 0
##      0.0000000142143709248919       0                 0                 0
##      0.0000000203570784591136       0                 0                 0
##      0.0000000942663046181582       0                 0                 0
##      0.0381424863643358             0                 0                 0
##      0.0395235614826762             0                 0                 0
##      0.0398504564629362             0                 0                 0
##      0.0449831541922517             0                 0                 0
##      0.150208567676068              0                 0                 0
##      0.291704657263826              0                 0                 0
##      0.31263158525612               0                 0                 0
##      0.313581394222809              0                 0                 0
##      0.399450114450523              0                 0                 0
##      0.419739887455571              0                 0                 0
##      0.425358901761228              0                 0                 0
##      0.594035429893685              0                 0                 0
##      0.671638488556335              0                 0                 0
##      0.688092298985074              0                 0                 0
##      0.806600378227794              0                 0                 0
##      0.867455094638368              0                 0                 0
##      0.897003448844096              0                 0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.174305555555556 0.208333333333333
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.220833333333333 0.25 0.270833333333333
##      0.000000000123720820519974                 0    0                 0
##      0.0000000142143709248919                   0    0                 0
##      0.0000000203570784591136                   0    0                 0
##      0.0000000942663046181582                   0    0                 0
##      0.0381424863643358                         0    0                 0
##      0.0395235614826762                         0    0                 0
##      0.0398504564629362                         0    0                 0
##      0.0449831541922517                         0    0                 0
##      0.150208567676068                          0    0                 0
##      0.291704657263826                          0    0                 0
##      0.31263158525612                           0    0                 0
##      0.313581394222809                          0    0                 0
##      0.399450114450523                          0    0                 0
##      0.419739887455571                          0    0                 0
##      0.425358901761228                          0    0                 0
##      0.594035429893685                          0    0                 0
##      0.671638488556335                          0    0                 0
##      0.688092298985074                          0    0                 0
##      0.806600378227794                          0    0                 0
##      0.867455094638368                          0    0                 0
##      0.897003448844096                          0    0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.289583333333333 0.371527777777778
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.409722222222222 0.416666666666667 0.5 0.55625
##      0.000000000123720820519974                 0                 0   0       0
##      0.0000000142143709248919                   0                 0   0       0
##      0.0000000203570784591136                   0                 0   0       0
##      0.0000000942663046181582                   0                 0   0       0
##      0.0381424863643358                         0                 0   0       0
##      0.0395235614826762                         0                 0   0       0
##      0.0398504564629362                         0                 0   0       0
##      0.0449831541922517                         0                 0   0       0
##      0.150208567676068                          0                 0   0       0
##      0.291704657263826                          0                 0   0       0
##      0.31263158525612                           0                 0   0       0
##      0.313581394222809                          0                 0   0       0
##      0.399450114450523                          0                 0   0       0
##      0.419739887455571                          0                 0   0       0
##      0.425358901761228                          0                 0   0       0
##      0.594035429893685                          0                 0   0       0
##      0.671638488556335                          0                 0   0       0
##      0.688092298985074                          0                 0   0       0
##      0.806600378227794                          0                 0   0       0
##      0.867455094638368                          0                 0   0       0
##      0.897003448844096                          0                 0   0       0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.639583333333333 0.907785087701754 1
##      0.000000000123720820519974                 0                 0 0
##      0.0000000142143709248919                   0                 0 0
##      0.0000000203570784591136                   0                 0 0
##      0.0000000942663046181582                   0                 0 0
##      0.0381424863643358                         0                 0 0
##      0.0395235614826762                         0                 0 0
##      0.0398504564629362                         0                 0 0
##      0.0449831541922517                         0                 0 0
##      0.150208567676068                          0                 0 0
##      0.291704657263826                          0                 0 0
##      0.31263158525612                           0                 0 0
##      0.313581394222809                          0                 0 0
##      0.399450114450523                          0                 0 0
##      0.419739887455571                          0                 0 0
##      0.425358901761228                          0                 0 0
##      0.594035429893685                          0                 0 0
##      0.671638488556335                          0                 0 0
##      0.688092298985074                          0                 0 0
##      0.806600378227794                          0                 0 0
##      0.867455094638368                          0                 0 0
##      0.897003448844096                          0                 0 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 1.34930555555556 4.020833333 6.15
##      0.000000000123720820519974                0           0    0
##      0.0000000142143709248919                  0           0    0
##      0.0000000203570784591136                  0           0    0
##      0.0000000942663046181582                  0           0    0
##      0.0381424863643358                        0           0    0
##      0.0395235614826762                        0           0    0
##      0.0398504564629362                        0           0    0
##      0.0449831541922517                        0           0    0
##      0.150208567676068                         0           0    0
##      0.291704657263826                         0           0    0
##      0.31263158525612                          0           0    0
##      0.313581394222809                         0           0    0
##      0.399450114450523                         0           0    0
##      0.419739887455571                         0           0    0
##      0.425358901761228                         0           0    0
##      0.594035429893685                         0           0    0
##      0.671638488556335                         0           0    0
##      0.688092298985074                         0           0    0
##      0.806600378227794                         0           0    0
##      0.867455094638368                         0           0    0
##      0.897003448844096                         0           0    0
## 
## , , OTT_Time = 0.416666666666667, Snapchat_Time = 0.153472222222222, Instagram_Time = 0.190972222222222
## 
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.125 0.142361111111111 0.152777777777778
##      0.000000000123720820519974     0                 0                 0
##      0.0000000142143709248919       0                 0                 0
##      0.0000000203570784591136       0                 0                 0
##      0.0000000942663046181582       0                 0                 0
##      0.0381424863643358             0                 0                 0
##      0.0395235614826762             0                 0                 0
##      0.0398504564629362             0                 0                 0
##      0.0449831541922517             0                 0                 0
##      0.150208567676068              0                 0                 0
##      0.291704657263826              0                 0                 0
##      0.31263158525612               0                 0                 0
##      0.313581394222809              0                 0                 0
##      0.399450114450523              0                 0                 0
##      0.419739887455571              0                 0                 0
##      0.425358901761228              0                 0                 0
##      0.594035429893685              0                 0                 0
##      0.671638488556335              0                 0                 0
##      0.688092298985074              0                 0                 0
##      0.806600378227794              0                 0                 0
##      0.867455094638368              0                 0                 0
##      0.897003448844096              0                 0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.174305555555556 0.208333333333333
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.220833333333333 0.25 0.270833333333333
##      0.000000000123720820519974                 0    0                 0
##      0.0000000142143709248919                   0    0                 0
##      0.0000000203570784591136                   0    0                 0
##      0.0000000942663046181582                   0    0                 0
##      0.0381424863643358                         0    0                 0
##      0.0395235614826762                         0    0                 0
##      0.0398504564629362                         0    0                 0
##      0.0449831541922517                         0    0                 0
##      0.150208567676068                          0    0                 0
##      0.291704657263826                          0    0                 0
##      0.31263158525612                           0    0                 0
##      0.313581394222809                          0    0                 0
##      0.399450114450523                          0    0                 0
##      0.419739887455571                          0    0                 0
##      0.425358901761228                          0    0                 0
##      0.594035429893685                          0    0                 0
##      0.671638488556335                          0    0                 0
##      0.688092298985074                          0    0                 0
##      0.806600378227794                          0    0                 0
##      0.867455094638368                          0    0                 0
##      0.897003448844096                          0    0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.289583333333333 0.371527777777778
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.409722222222222 0.416666666666667 0.5 0.55625
##      0.000000000123720820519974                 0                 0   0       0
##      0.0000000142143709248919                   0                 0   0       0
##      0.0000000203570784591136                   0                 0   0       0
##      0.0000000942663046181582                   0                 0   0       0
##      0.0381424863643358                         0                 0   0       0
##      0.0395235614826762                         0                 0   0       0
##      0.0398504564629362                         0                 0   0       0
##      0.0449831541922517                         0                 0   0       0
##      0.150208567676068                          0                 0   0       0
##      0.291704657263826                          0                 0   0       0
##      0.31263158525612                           0                 0   0       0
##      0.313581394222809                          0                 0   0       0
##      0.399450114450523                          0                 0   0       0
##      0.419739887455571                          0                 0   0       0
##      0.425358901761228                          0                 0   0       0
##      0.594035429893685                          0                 0   0       0
##      0.671638488556335                          0                 0   0       0
##      0.688092298985074                          0                 0   0       0
##      0.806600378227794                          0                 0   0       0
##      0.867455094638368                          0                 0   0       0
##      0.897003448844096                          0                 0   0       0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.639583333333333 0.907785087701754 1
##      0.000000000123720820519974                 0                 0 0
##      0.0000000142143709248919                   0                 0 0
##      0.0000000203570784591136                   0                 0 0
##      0.0000000942663046181582                   0                 0 0
##      0.0381424863643358                         0                 0 0
##      0.0395235614826762                         0                 0 0
##      0.0398504564629362                         0                 0 0
##      0.0449831541922517                         0                 0 0
##      0.150208567676068                          0                 0 0
##      0.291704657263826                          0                 0 0
##      0.31263158525612                           0                 0 0
##      0.313581394222809                          0                 0 0
##      0.399450114450523                          0                 0 0
##      0.419739887455571                          0                 0 0
##      0.425358901761228                          0                 0 0
##      0.594035429893685                          0                 0 0
##      0.671638488556335                          0                 0 0
##      0.688092298985074                          0                 0 0
##      0.806600378227794                          0                 0 0
##      0.867455094638368                          0                 0 0
##      0.897003448844096                          0                 0 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 1.34930555555556 4.020833333 6.15
##      0.000000000123720820519974                0           0    0
##      0.0000000142143709248919                  0           0    0
##      0.0000000203570784591136                  0           0    0
##      0.0000000942663046181582                  0           0    0
##      0.0381424863643358                        0           0    0
##      0.0395235614826762                        0           0    0
##      0.0398504564629362                        0           0    0
##      0.0449831541922517                        0           0    0
##      0.150208567676068                         0           0    0
##      0.291704657263826                         0           0    0
##      0.31263158525612                          0           0    0
##      0.313581394222809                         0           0    0
##      0.399450114450523                         0           0    0
##      0.419739887455571                         0           0    0
##      0.425358901761228                         0           0    0
##      0.594035429893685                         0           0    0
##      0.671638488556335                         0           0    0
##      0.688092298985074                         0           0    0
##      0.806600378227794                         0           0    0
##      0.867455094638368                         0           0    0
##      0.897003448844096                         0           0    0
## 
## , , OTT_Time = 0.5104166667, Snapchat_Time = 0.153472222222222, Instagram_Time = 0.190972222222222
## 
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.125 0.142361111111111 0.152777777777778
##      0.000000000123720820519974     0                 0                 0
##      0.0000000142143709248919       0                 0                 0
##      0.0000000203570784591136       0                 0                 0
##      0.0000000942663046181582       0                 0                 0
##      0.0381424863643358             0                 0                 0
##      0.0395235614826762             0                 0                 0
##      0.0398504564629362             0                 0                 0
##      0.0449831541922517             0                 0                 0
##      0.150208567676068              0                 0                 0
##      0.291704657263826              0                 0                 0
##      0.31263158525612               0                 0                 0
##      0.313581394222809              0                 0                 0
##      0.399450114450523              0                 0                 0
##      0.419739887455571              0                 0                 0
##      0.425358901761228              0                 0                 0
##      0.594035429893685              0                 0                 0
##      0.671638488556335              0                 0                 0
##      0.688092298985074              0                 0                 0
##      0.806600378227794              0                 0                 0
##      0.867455094638368              0                 0                 0
##      0.897003448844096              0                 0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.174305555555556 0.208333333333333
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.220833333333333 0.25 0.270833333333333
##      0.000000000123720820519974                 0    0                 0
##      0.0000000142143709248919                   0    0                 0
##      0.0000000203570784591136                   0    0                 0
##      0.0000000942663046181582                   0    0                 0
##      0.0381424863643358                         0    0                 0
##      0.0395235614826762                         0    0                 0
##      0.0398504564629362                         0    0                 0
##      0.0449831541922517                         0    0                 0
##      0.150208567676068                          0    0                 0
##      0.291704657263826                          0    0                 0
##      0.31263158525612                           0    0                 0
##      0.313581394222809                          0    0                 0
##      0.399450114450523                          0    0                 0
##      0.419739887455571                          0    0                 0
##      0.425358901761228                          0    0                 0
##      0.594035429893685                          0    0                 0
##      0.671638488556335                          0    0                 0
##      0.688092298985074                          0    0                 0
##      0.806600378227794                          0    0                 0
##      0.867455094638368                          0    0                 0
##      0.897003448844096                          0    0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.289583333333333 0.371527777777778
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.409722222222222 0.416666666666667 0.5 0.55625
##      0.000000000123720820519974                 0                 0   0       0
##      0.0000000142143709248919                   0                 0   0       0
##      0.0000000203570784591136                   0                 0   0       0
##      0.0000000942663046181582                   0                 0   0       0
##      0.0381424863643358                         0                 0   0       0
##      0.0395235614826762                         0                 0   0       0
##      0.0398504564629362                         0                 0   0       0
##      0.0449831541922517                         0                 0   0       0
##      0.150208567676068                          0                 0   0       0
##      0.291704657263826                          0                 0   0       0
##      0.31263158525612                           0                 0   0       0
##      0.313581394222809                          0                 0   0       0
##      0.399450114450523                          0                 0   0       0
##      0.419739887455571                          0                 0   0       0
##      0.425358901761228                          0                 0   0       0
##      0.594035429893685                          0                 0   0       0
##      0.671638488556335                          0                 0   0       0
##      0.688092298985074                          0                 0   0       0
##      0.806600378227794                          0                 0   0       0
##      0.867455094638368                          0                 0   0       0
##      0.897003448844096                          0                 0   0       0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.639583333333333 0.907785087701754 1
##      0.000000000123720820519974                 0                 0 0
##      0.0000000142143709248919                   0                 0 0
##      0.0000000203570784591136                   0                 0 0
##      0.0000000942663046181582                   0                 0 0
##      0.0381424863643358                         0                 0 0
##      0.0395235614826762                         0                 0 0
##      0.0398504564629362                         0                 0 0
##      0.0449831541922517                         0                 0 0
##      0.150208567676068                          0                 0 0
##      0.291704657263826                          0                 0 0
##      0.31263158525612                           0                 0 0
##      0.313581394222809                          0                 0 0
##      0.399450114450523                          0                 0 0
##      0.419739887455571                          0                 0 0
##      0.425358901761228                          0                 0 0
##      0.594035429893685                          0                 0 0
##      0.671638488556335                          0                 0 0
##      0.688092298985074                          0                 0 0
##      0.806600378227794                          0                 0 0
##      0.867455094638368                          0                 0 0
##      0.897003448844096                          0                 0 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 1.34930555555556 4.020833333 6.15
##      0.000000000123720820519974                0           0    0
##      0.0000000142143709248919                  0           0    0
##      0.0000000203570784591136                  0           0    0
##      0.0000000942663046181582                  0           0    0
##      0.0381424863643358                        0           0    0
##      0.0395235614826762                        0           0    0
##      0.0398504564629362                        0           0    0
##      0.0449831541922517                        0           0    0
##      0.150208567676068                         0           0    0
##      0.291704657263826                         0           0    0
##      0.31263158525612                          0           0    0
##      0.313581394222809                         0           0    0
##      0.399450114450523                         0           0    0
##      0.419739887455571                         0           0    0
##      0.425358901761228                         0           0    0
##      0.594035429893685                         0           0    0
##      0.671638488556335                         0           0    0
##      0.688092298985074                         0           0    0
##      0.806600378227794                         0           0    0
##      0.867455094638368                         0           0    0
##      0.897003448844096                         0           0    0
## 
## , , OTT_Time = 1.44460470085726, Snapchat_Time = 0.153472222222222, Instagram_Time = 0.190972222222222
## 
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.125 0.142361111111111 0.152777777777778
##      0.000000000123720820519974     0                 0                 0
##      0.0000000142143709248919       0                 0                 0
##      0.0000000203570784591136       0                 0                 0
##      0.0000000942663046181582       0                 0                 0
##      0.0381424863643358             0                 0                 0
##      0.0395235614826762             0                 0                 0
##      0.0398504564629362             0                 0                 0
##      0.0449831541922517             0                 0                 0
##      0.150208567676068              0                 0                 0
##      0.291704657263826              0                 0                 0
##      0.31263158525612               0                 0                 0
##      0.313581394222809              0                 0                 0
##      0.399450114450523              0                 0                 0
##      0.419739887455571              0                 0                 0
##      0.425358901761228              0                 0                 0
##      0.594035429893685              0                 0                 0
##      0.671638488556335              0                 0                 0
##      0.688092298985074              0                 0                 0
##      0.806600378227794              0                 0                 0
##      0.867455094638368              0                 0                 0
##      0.897003448844096              0                 0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.174305555555556 0.208333333333333
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.220833333333333 0.25 0.270833333333333
##      0.000000000123720820519974                 0    0                 0
##      0.0000000142143709248919                   0    0                 0
##      0.0000000203570784591136                   0    0                 0
##      0.0000000942663046181582                   0    0                 0
##      0.0381424863643358                         0    0                 0
##      0.0395235614826762                         0    0                 0
##      0.0398504564629362                         0    0                 0
##      0.0449831541922517                         0    0                 0
##      0.150208567676068                          0    0                 0
##      0.291704657263826                          0    0                 0
##      0.31263158525612                           0    0                 0
##      0.313581394222809                          0    0                 0
##      0.399450114450523                          0    0                 0
##      0.419739887455571                          0    0                 0
##      0.425358901761228                          0    0                 0
##      0.594035429893685                          0    0                 0
##      0.671638488556335                          0    0                 0
##      0.688092298985074                          0    0                 0
##      0.806600378227794                          0    0                 0
##      0.867455094638368                          0    0                 0
##      0.897003448844096                          0    0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.289583333333333 0.371527777777778
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.409722222222222 0.416666666666667 0.5 0.55625
##      0.000000000123720820519974                 0                 0   0       0
##      0.0000000142143709248919                   0                 0   0       0
##      0.0000000203570784591136                   0                 0   0       0
##      0.0000000942663046181582                   0                 0   0       0
##      0.0381424863643358                         0                 0   0       0
##      0.0395235614826762                         0                 0   0       0
##      0.0398504564629362                         0                 0   0       0
##      0.0449831541922517                         0                 0   0       0
##      0.150208567676068                          0                 0   0       0
##      0.291704657263826                          0                 0   0       0
##      0.31263158525612                           0                 0   0       0
##      0.313581394222809                          0                 0   0       0
##      0.399450114450523                          0                 0   0       0
##      0.419739887455571                          0                 0   0       0
##      0.425358901761228                          0                 0   0       0
##      0.594035429893685                          0                 0   0       0
##      0.671638488556335                          0                 0   0       0
##      0.688092298985074                          0                 0   0       0
##      0.806600378227794                          0                 0   0       0
##      0.867455094638368                          0                 0   0       0
##      0.897003448844096                          0                 0   0       0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.639583333333333 0.907785087701754 1
##      0.000000000123720820519974                 0                 0 0
##      0.0000000142143709248919                   0                 0 0
##      0.0000000203570784591136                   0                 0 0
##      0.0000000942663046181582                   0                 0 0
##      0.0381424863643358                         0                 0 0
##      0.0395235614826762                         0                 0 0
##      0.0398504564629362                         0                 0 0
##      0.0449831541922517                         0                 0 0
##      0.150208567676068                          0                 0 0
##      0.291704657263826                          0                 0 0
##      0.31263158525612                           0                 0 0
##      0.313581394222809                          0                 0 0
##      0.399450114450523                          0                 0 0
##      0.419739887455571                          0                 0 0
##      0.425358901761228                          0                 0 0
##      0.594035429893685                          0                 0 0
##      0.671638488556335                          0                 0 0
##      0.688092298985074                          0                 0 0
##      0.806600378227794                          0                 0 0
##      0.867455094638368                          0                 0 0
##      0.897003448844096                          0                 0 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 1.34930555555556 4.020833333 6.15
##      0.000000000123720820519974                0           0    0
##      0.0000000142143709248919                  0           0    0
##      0.0000000203570784591136                  0           0    0
##      0.0000000942663046181582                  0           0    0
##      0.0381424863643358                        0           0    0
##      0.0395235614826762                        0           0    0
##      0.0398504564629362                        0           0    0
##      0.0449831541922517                        0           0    0
##      0.150208567676068                         0           0    0
##      0.291704657263826                         0           0    0
##      0.31263158525612                          0           0    0
##      0.313581394222809                         0           0    0
##      0.399450114450523                         0           0    0
##      0.419739887455571                         0           0    0
##      0.425358901761228                         0           0    0
##      0.594035429893685                         0           0    0
##      0.671638488556335                         0           0    0
##      0.688092298985074                         0           0    0
##      0.806600378227794                         0           0    0
##      0.867455094638368                         0           0    0
##      0.897003448844096                         0           0    0
## 
## , , OTT_Time = 3, Snapchat_Time = 0.153472222222222, Instagram_Time = 0.190972222222222
## 
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.125 0.142361111111111 0.152777777777778
##      0.000000000123720820519974     0                 0                 0
##      0.0000000142143709248919       0                 0                 0
##      0.0000000203570784591136       0                 0                 0
##      0.0000000942663046181582       0                 0                 0
##      0.0381424863643358             0                 0                 0
##      0.0395235614826762             0                 0                 0
##      0.0398504564629362             0                 0                 0
##      0.0449831541922517             0                 0                 0
##      0.150208567676068              0                 0                 0
##      0.291704657263826              0                 0                 0
##      0.31263158525612               0                 0                 0
##      0.313581394222809              0                 0                 0
##      0.399450114450523              0                 0                 0
##      0.419739887455571              0                 0                 0
##      0.425358901761228              0                 0                 0
##      0.594035429893685              0                 0                 0
##      0.671638488556335              0                 0                 0
##      0.688092298985074              0                 0                 0
##      0.806600378227794              0                 0                 0
##      0.867455094638368              0                 0                 0
##      0.897003448844096              0                 0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.174305555555556 0.208333333333333
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.220833333333333 0.25 0.270833333333333
##      0.000000000123720820519974                 0    0                 0
##      0.0000000142143709248919                   0    0                 0
##      0.0000000203570784591136                   0    0                 0
##      0.0000000942663046181582                   0    0                 0
##      0.0381424863643358                         0    0                 0
##      0.0395235614826762                         0    0                 0
##      0.0398504564629362                         0    0                 0
##      0.0449831541922517                         0    0                 0
##      0.150208567676068                          0    0                 0
##      0.291704657263826                          0    0                 0
##      0.31263158525612                           0    0                 0
##      0.313581394222809                          0    0                 0
##      0.399450114450523                          0    0                 0
##      0.419739887455571                          0    0                 0
##      0.425358901761228                          0    0                 0
##      0.594035429893685                          0    0                 0
##      0.671638488556335                          0    0                 0
##      0.688092298985074                          0    0                 0
##      0.806600378227794                          0    0                 0
##      0.867455094638368                          0    0                 0
##      0.897003448844096                          0    0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.289583333333333 0.371527777777778
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.409722222222222 0.416666666666667 0.5 0.55625
##      0.000000000123720820519974                 0                 0   0       0
##      0.0000000142143709248919                   0                 0   0       0
##      0.0000000203570784591136                   0                 0   0       0
##      0.0000000942663046181582                   0                 0   0       0
##      0.0381424863643358                         0                 0   0       0
##      0.0395235614826762                         0                 0   0       0
##      0.0398504564629362                         0                 0   0       0
##      0.0449831541922517                         0                 0   0       0
##      0.150208567676068                          0                 0   0       0
##      0.291704657263826                          0                 0   0       0
##      0.31263158525612                           0                 0   0       0
##      0.313581394222809                          0                 0   0       0
##      0.399450114450523                          0                 0   0       0
##      0.419739887455571                          0                 0   0       0
##      0.425358901761228                          0                 0   0       0
##      0.594035429893685                          0                 0   0       0
##      0.671638488556335                          0                 0   0       0
##      0.688092298985074                          0                 0   0       0
##      0.806600378227794                          0                 0   0       0
##      0.867455094638368                          0                 0   0       0
##      0.897003448844096                          0                 0   0       0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.639583333333333 0.907785087701754 1
##      0.000000000123720820519974                 0                 0 0
##      0.0000000142143709248919                   0                 0 0
##      0.0000000203570784591136                   0                 0 0
##      0.0000000942663046181582                   0                 0 0
##      0.0381424863643358                         0                 0 0
##      0.0395235614826762                         0                 0 0
##      0.0398504564629362                         0                 0 0
##      0.0449831541922517                         0                 0 0
##      0.150208567676068                          0                 0 0
##      0.291704657263826                          0                 0 0
##      0.31263158525612                           0                 0 0
##      0.313581394222809                          0                 0 0
##      0.399450114450523                          0                 0 0
##      0.419739887455571                          0                 0 0
##      0.425358901761228                          0                 0 0
##      0.594035429893685                          0                 0 0
##      0.671638488556335                          0                 0 0
##      0.688092298985074                          0                 0 0
##      0.806600378227794                          0                 0 0
##      0.867455094638368                          0                 0 0
##      0.897003448844096                          0                 0 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 1.34930555555556 4.020833333 6.15
##      0.000000000123720820519974                0           0    0
##      0.0000000142143709248919                  0           0    0
##      0.0000000203570784591136                  0           0    0
##      0.0000000942663046181582                  0           0    0
##      0.0381424863643358                        0           0    0
##      0.0395235614826762                        0           0    0
##      0.0398504564629362                        0           0    0
##      0.0449831541922517                        0           0    0
##      0.150208567676068                         0           0    0
##      0.291704657263826                         0           0    0
##      0.31263158525612                          0           0    0
##      0.313581394222809                         0           0    0
##      0.399450114450523                         0           0    0
##      0.419739887455571                         0           0    0
##      0.425358901761228                         0           0    0
##      0.594035429893685                         0           0    0
##      0.671638488556335                         0           0    0
##      0.688092298985074                         0           0    0
##      0.806600378227794                         0           0    0
##      0.867455094638368                         0           0    0
##      0.897003448844096                         0           0    0
## 
## , , OTT_Time = 14.5, Snapchat_Time = 0.153472222222222, Instagram_Time = 0.190972222222222
## 
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.125 0.142361111111111 0.152777777777778
##      0.000000000123720820519974     0                 0                 0
##      0.0000000142143709248919       0                 0                 0
##      0.0000000203570784591136       0                 0                 0
##      0.0000000942663046181582       0                 0                 0
##      0.0381424863643358             0                 0                 0
##      0.0395235614826762             0                 0                 0
##      0.0398504564629362             0                 0                 0
##      0.0449831541922517             0                 0                 0
##      0.150208567676068              0                 0                 0
##      0.291704657263826              0                 0                 0
##      0.31263158525612               0                 0                 0
##      0.313581394222809              0                 0                 0
##      0.399450114450523              0                 0                 0
##      0.419739887455571              0                 0                 0
##      0.425358901761228              0                 0                 0
##      0.594035429893685              0                 0                 0
##      0.671638488556335              0                 0                 0
##      0.688092298985074              0                 0                 0
##      0.806600378227794              0                 0                 0
##      0.867455094638368              0                 0                 0
##      0.897003448844096              0                 0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.174305555555556 0.208333333333333
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.220833333333333 0.25 0.270833333333333
##      0.000000000123720820519974                 0    0                 0
##      0.0000000142143709248919                   0    0                 0
##      0.0000000203570784591136                   0    0                 0
##      0.0000000942663046181582                   0    0                 0
##      0.0381424863643358                         0    0                 0
##      0.0395235614826762                         0    0                 0
##      0.0398504564629362                         0    0                 0
##      0.0449831541922517                         0    0                 0
##      0.150208567676068                          0    0                 0
##      0.291704657263826                          0    0                 0
##      0.31263158525612                           0    0                 0
##      0.313581394222809                          0    0                 0
##      0.399450114450523                          0    0                 0
##      0.419739887455571                          0    0                 0
##      0.425358901761228                          0    0                 0
##      0.594035429893685                          0    0                 0
##      0.671638488556335                          0    0                 0
##      0.688092298985074                          0    0                 0
##      0.806600378227794                          0    0                 0
##      0.867455094638368                          0    0                 0
##      0.897003448844096                          0    0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.289583333333333 0.371527777777778
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.409722222222222 0.416666666666667 0.5 0.55625
##      0.000000000123720820519974                 0                 0   0       0
##      0.0000000142143709248919                   0                 0   0       0
##      0.0000000203570784591136                   0                 0   0       0
##      0.0000000942663046181582                   0                 0   0       0
##      0.0381424863643358                         0                 0   0       0
##      0.0395235614826762                         0                 0   0       0
##      0.0398504564629362                         0                 0   0       0
##      0.0449831541922517                         0                 0   0       0
##      0.150208567676068                          0                 0   0       0
##      0.291704657263826                          0                 0   0       0
##      0.31263158525612                           0                 0   0       0
##      0.313581394222809                          0                 0   0       0
##      0.399450114450523                          0                 0   0       0
##      0.419739887455571                          0                 0   0       0
##      0.425358901761228                          0                 0   0       0
##      0.594035429893685                          0                 0   0       0
##      0.671638488556335                          0                 0   0       0
##      0.688092298985074                          0                 0   0       0
##      0.806600378227794                          0                 0   0       0
##      0.867455094638368                          0                 0   0       0
##      0.897003448844096                          0                 0   0       0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.639583333333333 0.907785087701754 1
##      0.000000000123720820519974                 0                 0 0
##      0.0000000142143709248919                   0                 0 0
##      0.0000000203570784591136                   0                 0 0
##      0.0000000942663046181582                   0                 0 0
##      0.0381424863643358                         0                 0 0
##      0.0395235614826762                         0                 0 0
##      0.0398504564629362                         0                 0 0
##      0.0449831541922517                         0                 0 0
##      0.150208567676068                          0                 0 0
##      0.291704657263826                          0                 0 0
##      0.31263158525612                           0                 0 0
##      0.313581394222809                          0                 0 0
##      0.399450114450523                          0                 0 0
##      0.419739887455571                          0                 0 0
##      0.425358901761228                          0                 0 0
##      0.594035429893685                          0                 0 0
##      0.671638488556335                          0                 0 0
##      0.688092298985074                          0                 0 0
##      0.806600378227794                          0                 0 0
##      0.867455094638368                          0                 0 0
##      0.897003448844096                          0                 0 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 1.34930555555556 4.020833333 6.15
##      0.000000000123720820519974                0           0    0
##      0.0000000142143709248919                  0           0    0
##      0.0000000203570784591136                  0           0    0
##      0.0000000942663046181582                  0           0    0
##      0.0381424863643358                        0           0    0
##      0.0395235614826762                        0           0    0
##      0.0398504564629362                        0           0    0
##      0.0449831541922517                        0           0    0
##      0.150208567676068                         0           0    0
##      0.291704657263826                         0           0    0
##      0.31263158525612                          0           0    0
##      0.313581394222809                         0           0    0
##      0.399450114450523                         0           0    0
##      0.419739887455571                         0           0    0
##      0.425358901761228                         0           0    0
##      0.594035429893685                         0           0    0
##      0.671638488556335                         0           0    0
##      0.688092298985074                         0           0    0
##      0.806600378227794                         0           0    0
##      0.867455094638368                         0           0    0
##      0.897003448844096                         0           0    0
## 
## , , OTT_Time = 0, Snapchat_Time = 0.304861111111111, Instagram_Time = 0.190972222222222
## 
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.125 0.142361111111111 0.152777777777778
##      0.000000000123720820519974     0                 0                 0
##      0.0000000142143709248919       0                 0                 0
##      0.0000000203570784591136       0                 0                 0
##      0.0000000942663046181582       0                 0                 0
##      0.0381424863643358             0                 0                 0
##      0.0395235614826762             0                 0                 0
##      0.0398504564629362             0                 0                 0
##      0.0449831541922517             0                 0                 0
##      0.150208567676068              0                 0                 0
##      0.291704657263826              0                 0                 0
##      0.31263158525612               0                 0                 0
##      0.313581394222809              0                 0                 0
##      0.399450114450523              0                 0                 0
##      0.419739887455571              0                 0                 0
##      0.425358901761228              0                 0                 0
##      0.594035429893685              0                 0                 0
##      0.671638488556335              0                 0                 0
##      0.688092298985074              0                 0                 0
##      0.806600378227794              0                 0                 0
##      0.867455094638368              0                 0                 0
##      0.897003448844096              0                 0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.174305555555556 0.208333333333333
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.220833333333333 0.25 0.270833333333333
##      0.000000000123720820519974                 0    0                 0
##      0.0000000142143709248919                   0    0                 0
##      0.0000000203570784591136                   0    0                 0
##      0.0000000942663046181582                   0    0                 0
##      0.0381424863643358                         0    0                 0
##      0.0395235614826762                         0    0                 0
##      0.0398504564629362                         0    0                 0
##      0.0449831541922517                         0    0                 0
##      0.150208567676068                          0    0                 0
##      0.291704657263826                          0    0                 0
##      0.31263158525612                           0    0                 0
##      0.313581394222809                          0    0                 0
##      0.399450114450523                          0    0                 0
##      0.419739887455571                          0    0                 0
##      0.425358901761228                          0    0                 0
##      0.594035429893685                          0    0                 0
##      0.671638488556335                          0    0                 0
##      0.688092298985074                          0    0                 0
##      0.806600378227794                          0    0                 0
##      0.867455094638368                          0    0                 0
##      0.897003448844096                          0    0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.289583333333333 0.371527777777778
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.409722222222222 0.416666666666667 0.5 0.55625
##      0.000000000123720820519974                 0                 0   0       0
##      0.0000000142143709248919                   0                 0   0       0
##      0.0000000203570784591136                   0                 0   0       0
##      0.0000000942663046181582                   0                 0   0       0
##      0.0381424863643358                         0                 0   0       0
##      0.0395235614826762                         0                 0   0       0
##      0.0398504564629362                         0                 0   0       0
##      0.0449831541922517                         0                 0   0       0
##      0.150208567676068                          0                 0   0       0
##      0.291704657263826                          0                 0   0       0
##      0.31263158525612                           0                 0   0       0
##      0.313581394222809                          0                 0   0       0
##      0.399450114450523                          0                 0   0       0
##      0.419739887455571                          0                 0   0       0
##      0.425358901761228                          0                 0   0       0
##      0.594035429893685                          0                 0   0       0
##      0.671638488556335                          0                 0   0       0
##      0.688092298985074                          0                 0   0       0
##      0.806600378227794                          0                 0   0       0
##      0.867455094638368                          0                 0   0       0
##      0.897003448844096                          0                 0   0       0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.639583333333333 0.907785087701754 1
##      0.000000000123720820519974                 0                 0 0
##      0.0000000142143709248919                   0                 0 0
##      0.0000000203570784591136                   0                 0 0
##      0.0000000942663046181582                   0                 0 0
##      0.0381424863643358                         0                 0 0
##      0.0395235614826762                         0                 0 0
##      0.0398504564629362                         0                 0 0
##      0.0449831541922517                         0                 0 0
##      0.150208567676068                          0                 0 0
##      0.291704657263826                          0                 0 0
##      0.31263158525612                           0                 0 0
##      0.313581394222809                          0                 0 0
##      0.399450114450523                          0                 0 0
##      0.419739887455571                          0                 0 0
##      0.425358901761228                          0                 0 0
##      0.594035429893685                          0                 0 0
##      0.671638488556335                          0                 0 0
##      0.688092298985074                          0                 0 0
##      0.806600378227794                          0                 0 0
##      0.867455094638368                          0                 0 0
##      0.897003448844096                          0                 0 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 1.34930555555556 4.020833333 6.15
##      0.000000000123720820519974                0           0    0
##      0.0000000142143709248919                  0           0    0
##      0.0000000203570784591136                  0           0    0
##      0.0000000942663046181582                  0           0    0
##      0.0381424863643358                        0           0    0
##      0.0395235614826762                        0           0    0
##      0.0398504564629362                        0           0    0
##      0.0449831541922517                        0           0    0
##      0.150208567676068                         0           0    0
##      0.291704657263826                         0           0    0
##      0.31263158525612                          0           0    0
##      0.313581394222809                         0           0    0
##      0.399450114450523                         0           0    0
##      0.419739887455571                         0           0    0
##      0.425358901761228                         0           0    0
##      0.594035429893685                         0           0    0
##      0.671638488556335                         0           0    0
##      0.688092298985074                         0           0    0
##      0.806600378227794                         0           0    0
##      0.867455094638368                         0           0    0
##      0.897003448844096                         0           0    0
## 
## , , OTT_Time = 0.102777777777778, Snapchat_Time = 0.304861111111111, Instagram_Time = 0.190972222222222
## 
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.125 0.142361111111111 0.152777777777778
##      0.000000000123720820519974     0                 0                 0
##      0.0000000142143709248919       0                 0                 0
##      0.0000000203570784591136       0                 0                 0
##      0.0000000942663046181582       0                 0                 0
##      0.0381424863643358             0                 0                 0
##      0.0395235614826762             0                 0                 0
##      0.0398504564629362             0                 0                 0
##      0.0449831541922517             0                 0                 0
##      0.150208567676068              0                 0                 0
##      0.291704657263826              0                 0                 0
##      0.31263158525612               0                 0                 0
##      0.313581394222809              0                 0                 0
##      0.399450114450523              0                 0                 0
##      0.419739887455571              0                 0                 0
##      0.425358901761228              0                 0                 0
##      0.594035429893685              0                 0                 0
##      0.671638488556335              0                 0                 0
##      0.688092298985074              0                 0                 0
##      0.806600378227794              0                 0                 0
##      0.867455094638368              0                 0                 0
##      0.897003448844096              0                 0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.174305555555556 0.208333333333333
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.220833333333333 0.25 0.270833333333333
##      0.000000000123720820519974                 0    0                 0
##      0.0000000142143709248919                   0    0                 0
##      0.0000000203570784591136                   0    0                 0
##      0.0000000942663046181582                   0    0                 0
##      0.0381424863643358                         0    0                 0
##      0.0395235614826762                         0    0                 0
##      0.0398504564629362                         0    0                 0
##      0.0449831541922517                         0    0                 0
##      0.150208567676068                          0    0                 0
##      0.291704657263826                          0    0                 0
##      0.31263158525612                           0    0                 0
##      0.313581394222809                          0    0                 0
##      0.399450114450523                          0    0                 0
##      0.419739887455571                          0    0                 0
##      0.425358901761228                          0    0                 0
##      0.594035429893685                          0    0                 0
##      0.671638488556335                          0    0                 0
##      0.688092298985074                          0    0                 0
##      0.806600378227794                          0    0                 0
##      0.867455094638368                          0    0                 0
##      0.897003448844096                          0    0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.289583333333333 0.371527777777778
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.409722222222222 0.416666666666667 0.5 0.55625
##      0.000000000123720820519974                 0                 0   0       0
##      0.0000000142143709248919                   0                 0   0       0
##      0.0000000203570784591136                   0                 0   0       0
##      0.0000000942663046181582                   0                 0   0       0
##      0.0381424863643358                         0                 0   0       0
##      0.0395235614826762                         0                 0   0       0
##      0.0398504564629362                         0                 0   0       0
##      0.0449831541922517                         0                 0   0       0
##      0.150208567676068                          0                 0   0       0
##      0.291704657263826                          0                 0   0       0
##      0.31263158525612                           0                 0   0       0
##      0.313581394222809                          0                 0   0       0
##      0.399450114450523                          0                 0   0       0
##      0.419739887455571                          0                 0   0       0
##      0.425358901761228                          0                 0   0       0
##      0.594035429893685                          0                 0   0       0
##      0.671638488556335                          0                 0   0       0
##      0.688092298985074                          0                 0   0       0
##      0.806600378227794                          0                 0   0       0
##      0.867455094638368                          0                 0   0       0
##      0.897003448844096                          0                 0   0       0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.639583333333333 0.907785087701754 1
##      0.000000000123720820519974                 0                 0 0
##      0.0000000142143709248919                   0                 0 0
##      0.0000000203570784591136                   0                 0 0
##      0.0000000942663046181582                   0                 0 0
##      0.0381424863643358                         0                 0 0
##      0.0395235614826762                         0                 0 0
##      0.0398504564629362                         0                 0 0
##      0.0449831541922517                         0                 0 0
##      0.150208567676068                          0                 0 0
##      0.291704657263826                          0                 0 0
##      0.31263158525612                           0                 0 0
##      0.313581394222809                          0                 0 0
##      0.399450114450523                          0                 0 0
##      0.419739887455571                          0                 0 0
##      0.425358901761228                          0                 0 0
##      0.594035429893685                          0                 0 0
##      0.671638488556335                          0                 0 0
##      0.688092298985074                          0                 0 0
##      0.806600378227794                          0                 0 0
##      0.867455094638368                          0                 0 0
##      0.897003448844096                          0                 0 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 1.34930555555556 4.020833333 6.15
##      0.000000000123720820519974                0           0    0
##      0.0000000142143709248919                  0           0    0
##      0.0000000203570784591136                  0           0    0
##      0.0000000942663046181582                  0           0    0
##      0.0381424863643358                        0           0    0
##      0.0395235614826762                        0           0    0
##      0.0398504564629362                        0           0    0
##      0.0449831541922517                        0           0    0
##      0.150208567676068                         0           0    0
##      0.291704657263826                         0           0    0
##      0.31263158525612                          0           0    0
##      0.313581394222809                         0           0    0
##      0.399450114450523                         0           0    0
##      0.419739887455571                         0           0    0
##      0.425358901761228                         0           0    0
##      0.594035429893685                         0           0    0
##      0.671638488556335                         0           0    0
##      0.688092298985074                         0           0    0
##      0.806600378227794                         0           0    0
##      0.867455094638368                         0           0    0
##      0.897003448844096                         0           0    0
## 
## , , OTT_Time = 0.125, Snapchat_Time = 0.304861111111111, Instagram_Time = 0.190972222222222
## 
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.125 0.142361111111111 0.152777777777778
##      0.000000000123720820519974     0                 0                 0
##      0.0000000142143709248919       0                 0                 0
##      0.0000000203570784591136       0                 0                 0
##      0.0000000942663046181582       0                 0                 0
##      0.0381424863643358             0                 0                 0
##      0.0395235614826762             0                 0                 0
##      0.0398504564629362             0                 0                 0
##      0.0449831541922517             0                 0                 0
##      0.150208567676068              0                 0                 0
##      0.291704657263826              0                 0                 0
##      0.31263158525612               0                 0                 0
##      0.313581394222809              0                 0                 0
##      0.399450114450523              0                 0                 0
##      0.419739887455571              0                 0                 0
##      0.425358901761228              0                 0                 0
##      0.594035429893685              0                 0                 0
##      0.671638488556335              0                 0                 0
##      0.688092298985074              0                 0                 0
##      0.806600378227794              0                 0                 0
##      0.867455094638368              0                 0                 0
##      0.897003448844096              0                 0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.174305555555556 0.208333333333333
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.220833333333333 0.25 0.270833333333333
##      0.000000000123720820519974                 0    0                 0
##      0.0000000142143709248919                   0    0                 0
##      0.0000000203570784591136                   0    0                 0
##      0.0000000942663046181582                   0    0                 0
##      0.0381424863643358                         0    0                 0
##      0.0395235614826762                         0    0                 0
##      0.0398504564629362                         0    0                 0
##      0.0449831541922517                         0    0                 0
##      0.150208567676068                          0    0                 0
##      0.291704657263826                          0    0                 0
##      0.31263158525612                           0    0                 0
##      0.313581394222809                          0    0                 0
##      0.399450114450523                          0    0                 0
##      0.419739887455571                          0    0                 0
##      0.425358901761228                          0    0                 0
##      0.594035429893685                          0    0                 0
##      0.671638488556335                          0    0                 0
##      0.688092298985074                          0    0                 0
##      0.806600378227794                          0    0                 0
##      0.867455094638368                          0    0                 0
##      0.897003448844096                          0    0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.289583333333333 0.371527777777778
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.409722222222222 0.416666666666667 0.5 0.55625
##      0.000000000123720820519974                 0                 0   0       0
##      0.0000000142143709248919                   0                 0   0       0
##      0.0000000203570784591136                   0                 0   0       0
##      0.0000000942663046181582                   0                 0   0       0
##      0.0381424863643358                         0                 0   0       0
##      0.0395235614826762                         0                 0   0       0
##      0.0398504564629362                         0                 0   0       0
##      0.0449831541922517                         0                 0   0       0
##      0.150208567676068                          0                 0   0       0
##      0.291704657263826                          0                 0   0       0
##      0.31263158525612                           0                 0   0       0
##      0.313581394222809                          0                 0   0       0
##      0.399450114450523                          0                 0   0       0
##      0.419739887455571                          0                 0   0       0
##      0.425358901761228                          0                 0   0       0
##      0.594035429893685                          0                 0   0       0
##      0.671638488556335                          0                 0   0       0
##      0.688092298985074                          0                 0   0       0
##      0.806600378227794                          0                 0   0       0
##      0.867455094638368                          0                 0   0       0
##      0.897003448844096                          0                 0   0       0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.639583333333333 0.907785087701754 1
##      0.000000000123720820519974                 0                 0 0
##      0.0000000142143709248919                   0                 0 0
##      0.0000000203570784591136                   0                 0 0
##      0.0000000942663046181582                   0                 0 0
##      0.0381424863643358                         0                 0 0
##      0.0395235614826762                         0                 0 0
##      0.0398504564629362                         0                 0 0
##      0.0449831541922517                         0                 0 0
##      0.150208567676068                          0                 0 0
##      0.291704657263826                          0                 0 0
##      0.31263158525612                           0                 0 0
##      0.313581394222809                          0                 0 0
##      0.399450114450523                          0                 0 0
##      0.419739887455571                          0                 0 0
##      0.425358901761228                          0                 0 0
##      0.594035429893685                          0                 0 0
##      0.671638488556335                          0                 0 0
##      0.688092298985074                          0                 0 0
##      0.806600378227794                          0                 0 0
##      0.867455094638368                          0                 0 0
##      0.897003448844096                          0                 0 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 1.34930555555556 4.020833333 6.15
##      0.000000000123720820519974                0           0    0
##      0.0000000142143709248919                  0           0    0
##      0.0000000203570784591136                  0           0    0
##      0.0000000942663046181582                  0           0    0
##      0.0381424863643358                        0           0    0
##      0.0395235614826762                        0           0    0
##      0.0398504564629362                        0           0    0
##      0.0449831541922517                        0           0    0
##      0.150208567676068                         0           0    0
##      0.291704657263826                         0           0    0
##      0.31263158525612                          0           0    0
##      0.313581394222809                         0           0    0
##      0.399450114450523                         0           0    0
##      0.419739887455571                         0           0    0
##      0.425358901761228                         0           0    0
##      0.594035429893685                         0           0    0
##      0.671638488556335                         0           0    0
##      0.688092298985074                         0           0    0
##      0.806600378227794                         0           0    0
##      0.867455094638368                         0           0    0
##      0.897003448844096                         0           0    0
## 
## , , OTT_Time = 0.416666666666667, Snapchat_Time = 0.304861111111111, Instagram_Time = 0.190972222222222
## 
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.125 0.142361111111111 0.152777777777778
##      0.000000000123720820519974     0                 0                 0
##      0.0000000142143709248919       0                 0                 0
##      0.0000000203570784591136       0                 0                 0
##      0.0000000942663046181582       0                 0                 0
##      0.0381424863643358             0                 0                 0
##      0.0395235614826762             0                 0                 0
##      0.0398504564629362             0                 0                 0
##      0.0449831541922517             0                 0                 0
##      0.150208567676068              0                 0                 0
##      0.291704657263826              0                 0                 0
##      0.31263158525612               0                 0                 0
##      0.313581394222809              0                 0                 0
##      0.399450114450523              0                 0                 0
##      0.419739887455571              0                 0                 0
##      0.425358901761228              0                 0                 0
##      0.594035429893685              0                 0                 0
##      0.671638488556335              0                 0                 0
##      0.688092298985074              0                 0                 0
##      0.806600378227794              0                 0                 0
##      0.867455094638368              0                 0                 0
##      0.897003448844096              0                 0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.174305555555556 0.208333333333333
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.220833333333333 0.25 0.270833333333333
##      0.000000000123720820519974                 0    0                 0
##      0.0000000142143709248919                   0    0                 0
##      0.0000000203570784591136                   0    0                 0
##      0.0000000942663046181582                   0    0                 0
##      0.0381424863643358                         0    0                 0
##      0.0395235614826762                         0    0                 0
##      0.0398504564629362                         0    0                 0
##      0.0449831541922517                         0    0                 0
##      0.150208567676068                          0    0                 0
##      0.291704657263826                          0    0                 0
##      0.31263158525612                           0    0                 0
##      0.313581394222809                          0    0                 0
##      0.399450114450523                          0    0                 0
##      0.419739887455571                          0    0                 0
##      0.425358901761228                          0    0                 0
##      0.594035429893685                          0    0                 0
##      0.671638488556335                          0    0                 0
##      0.688092298985074                          0    0                 0
##      0.806600378227794                          0    0                 0
##      0.867455094638368                          0    0                 0
##      0.897003448844096                          0    0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.289583333333333 0.371527777777778
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.409722222222222 0.416666666666667 0.5 0.55625
##      0.000000000123720820519974                 0                 0   0       0
##      0.0000000142143709248919                   0                 0   0       0
##      0.0000000203570784591136                   0                 0   0       0
##      0.0000000942663046181582                   0                 0   0       0
##      0.0381424863643358                         0                 0   0       0
##      0.0395235614826762                         0                 0   0       0
##      0.0398504564629362                         0                 0   0       0
##      0.0449831541922517                         0                 0   0       0
##      0.150208567676068                          0                 0   0       0
##      0.291704657263826                          0                 0   0       0
##      0.31263158525612                           0                 0   0       0
##      0.313581394222809                          0                 0   0       0
##      0.399450114450523                          0                 0   0       0
##      0.419739887455571                          0                 0   0       0
##      0.425358901761228                          0                 0   0       0
##      0.594035429893685                          0                 0   0       0
##      0.671638488556335                          0                 0   0       0
##      0.688092298985074                          0                 0   0       0
##      0.806600378227794                          0                 0   0       0
##      0.867455094638368                          0                 0   0       0
##      0.897003448844096                          0                 0   0       0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.639583333333333 0.907785087701754 1
##      0.000000000123720820519974                 0                 0 0
##      0.0000000142143709248919                   0                 0 0
##      0.0000000203570784591136                   0                 0 0
##      0.0000000942663046181582                   0                 0 0
##      0.0381424863643358                         0                 0 0
##      0.0395235614826762                         0                 0 0
##      0.0398504564629362                         0                 0 0
##      0.0449831541922517                         0                 0 0
##      0.150208567676068                          0                 0 0
##      0.291704657263826                          0                 0 0
##      0.31263158525612                           0                 0 0
##      0.313581394222809                          0                 0 0
##      0.399450114450523                          0                 0 0
##      0.419739887455571                          0                 0 0
##      0.425358901761228                          0                 0 0
##      0.594035429893685                          0                 0 0
##      0.671638488556335                          0                 0 0
##      0.688092298985074                          0                 0 0
##      0.806600378227794                          0                 0 0
##      0.867455094638368                          0                 0 0
##      0.897003448844096                          0                 0 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 1.34930555555556 4.020833333 6.15
##      0.000000000123720820519974                0           0    0
##      0.0000000142143709248919                  0           0    0
##      0.0000000203570784591136                  0           0    0
##      0.0000000942663046181582                  0           0    0
##      0.0381424863643358                        0           0    0
##      0.0395235614826762                        0           0    0
##      0.0398504564629362                        0           0    0
##      0.0449831541922517                        0           0    0
##      0.150208567676068                         0           0    0
##      0.291704657263826                         0           0    0
##      0.31263158525612                          0           0    0
##      0.313581394222809                         0           0    0
##      0.399450114450523                         0           0    0
##      0.419739887455571                         0           0    0
##      0.425358901761228                         0           0    0
##      0.594035429893685                         0           0    0
##      0.671638488556335                         0           0    0
##      0.688092298985074                         0           0    0
##      0.806600378227794                         0           0    0
##      0.867455094638368                         0           0    0
##      0.897003448844096                         0           0    0
## 
## , , OTT_Time = 0.5104166667, Snapchat_Time = 0.304861111111111, Instagram_Time = 0.190972222222222
## 
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.125 0.142361111111111 0.152777777777778
##      0.000000000123720820519974     0                 0                 0
##      0.0000000142143709248919       0                 0                 0
##      0.0000000203570784591136       0                 0                 0
##      0.0000000942663046181582       0                 0                 0
##      0.0381424863643358             0                 0                 0
##      0.0395235614826762             0                 0                 0
##      0.0398504564629362             0                 0                 0
##      0.0449831541922517             0                 0                 0
##      0.150208567676068              0                 0                 0
##      0.291704657263826              0                 0                 0
##      0.31263158525612               0                 0                 0
##      0.313581394222809              0                 0                 0
##      0.399450114450523              0                 0                 0
##      0.419739887455571              0                 0                 0
##      0.425358901761228              0                 0                 0
##      0.594035429893685              0                 0                 0
##      0.671638488556335              0                 0                 0
##      0.688092298985074              0                 0                 0
##      0.806600378227794              0                 0                 0
##      0.867455094638368              0                 0                 0
##      0.897003448844096              0                 0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.174305555555556 0.208333333333333
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.220833333333333 0.25 0.270833333333333
##      0.000000000123720820519974                 0    0                 0
##      0.0000000142143709248919                   0    0                 0
##      0.0000000203570784591136                   0    0                 0
##      0.0000000942663046181582                   0    0                 0
##      0.0381424863643358                         0    0                 0
##      0.0395235614826762                         0    0                 0
##      0.0398504564629362                         0    0                 0
##      0.0449831541922517                         0    0                 0
##      0.150208567676068                          0    0                 0
##      0.291704657263826                          0    0                 0
##      0.31263158525612                           0    0                 0
##      0.313581394222809                          0    0                 0
##      0.399450114450523                          0    0                 0
##      0.419739887455571                          0    0                 0
##      0.425358901761228                          0    0                 0
##      0.594035429893685                          0    0                 0
##      0.671638488556335                          0    0                 0
##      0.688092298985074                          0    0                 0
##      0.806600378227794                          0    0                 0
##      0.867455094638368                          0    0                 0
##      0.897003448844096                          0    0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.289583333333333 0.371527777777778
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.409722222222222 0.416666666666667 0.5 0.55625
##      0.000000000123720820519974                 0                 0   0       0
##      0.0000000142143709248919                   0                 0   0       0
##      0.0000000203570784591136                   0                 0   0       0
##      0.0000000942663046181582                   0                 0   0       0
##      0.0381424863643358                         0                 0   0       0
##      0.0395235614826762                         0                 0   0       0
##      0.0398504564629362                         0                 0   0       0
##      0.0449831541922517                         0                 0   0       0
##      0.150208567676068                          0                 0   0       0
##      0.291704657263826                          0                 0   0       0
##      0.31263158525612                           0                 0   0       0
##      0.313581394222809                          0                 0   0       0
##      0.399450114450523                          0                 0   0       0
##      0.419739887455571                          0                 0   0       0
##      0.425358901761228                          0                 0   0       0
##      0.594035429893685                          0                 0   0       0
##      0.671638488556335                          0                 0   0       0
##      0.688092298985074                          0                 0   0       0
##      0.806600378227794                          0                 0   0       0
##      0.867455094638368                          0                 0   0       0
##      0.897003448844096                          0                 0   0       0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.639583333333333 0.907785087701754 1
##      0.000000000123720820519974                 0                 0 0
##      0.0000000142143709248919                   0                 0 0
##      0.0000000203570784591136                   0                 0 0
##      0.0000000942663046181582                   0                 0 0
##      0.0381424863643358                         0                 0 0
##      0.0395235614826762                         0                 0 0
##      0.0398504564629362                         0                 0 0
##      0.0449831541922517                         0                 0 0
##      0.150208567676068                          0                 0 0
##      0.291704657263826                          0                 0 0
##      0.31263158525612                           0                 0 0
##      0.313581394222809                          0                 0 0
##      0.399450114450523                          0                 0 0
##      0.419739887455571                          0                 0 0
##      0.425358901761228                          0                 0 0
##      0.594035429893685                          0                 0 0
##      0.671638488556335                          0                 0 0
##      0.688092298985074                          0                 0 0
##      0.806600378227794                          0                 0 0
##      0.867455094638368                          0                 0 0
##      0.897003448844096                          0                 0 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 1.34930555555556 4.020833333 6.15
##      0.000000000123720820519974                0           0    0
##      0.0000000142143709248919                  0           0    0
##      0.0000000203570784591136                  0           0    0
##      0.0000000942663046181582                  0           0    0
##      0.0381424863643358                        0           0    0
##      0.0395235614826762                        0           0    0
##      0.0398504564629362                        0           0    0
##      0.0449831541922517                        0           0    0
##      0.150208567676068                         0           0    0
##      0.291704657263826                         0           0    0
##      0.31263158525612                          0           0    0
##      0.313581394222809                         0           0    0
##      0.399450114450523                         0           0    0
##      0.419739887455571                         0           0    0
##      0.425358901761228                         0           0    0
##      0.594035429893685                         0           0    0
##      0.671638488556335                         0           0    0
##      0.688092298985074                         0           0    0
##      0.806600378227794                         0           0    0
##      0.867455094638368                         0           0    0
##      0.897003448844096                         0           0    0
## 
## , , OTT_Time = 1.44460470085726, Snapchat_Time = 0.304861111111111, Instagram_Time = 0.190972222222222
## 
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.125 0.142361111111111 0.152777777777778
##      0.000000000123720820519974     0                 0                 0
##      0.0000000142143709248919       0                 0                 0
##      0.0000000203570784591136       0                 0                 0
##      0.0000000942663046181582       0                 0                 0
##      0.0381424863643358             0                 0                 0
##      0.0395235614826762             0                 0                 0
##      0.0398504564629362             0                 0                 0
##      0.0449831541922517             0                 0                 0
##      0.150208567676068              0                 0                 0
##      0.291704657263826              0                 0                 0
##      0.31263158525612               0                 0                 0
##      0.313581394222809              0                 0                 0
##      0.399450114450523              0                 0                 0
##      0.419739887455571              0                 0                 0
##      0.425358901761228              0                 0                 0
##      0.594035429893685              0                 0                 0
##      0.671638488556335              0                 0                 0
##      0.688092298985074              0                 0                 0
##      0.806600378227794              0                 0                 0
##      0.867455094638368              0                 0                 0
##      0.897003448844096              0                 0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.174305555555556 0.208333333333333
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.220833333333333 0.25 0.270833333333333
##      0.000000000123720820519974                 0    0                 0
##      0.0000000142143709248919                   0    0                 0
##      0.0000000203570784591136                   0    0                 0
##      0.0000000942663046181582                   0    0                 0
##      0.0381424863643358                         0    0                 0
##      0.0395235614826762                         0    0                 0
##      0.0398504564629362                         0    0                 0
##      0.0449831541922517                         0    0                 0
##      0.150208567676068                          0    0                 0
##      0.291704657263826                          0    0                 0
##      0.31263158525612                           0    0                 0
##      0.313581394222809                          0    0                 0
##      0.399450114450523                          0    0                 0
##      0.419739887455571                          0    0                 0
##      0.425358901761228                          0    0                 0
##      0.594035429893685                          0    0                 0
##      0.671638488556335                          0    0                 0
##      0.688092298985074                          0    0                 0
##      0.806600378227794                          0    0                 0
##      0.867455094638368                          0    0                 0
##      0.897003448844096                          0    0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.289583333333333 0.371527777777778
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.409722222222222 0.416666666666667 0.5 0.55625
##      0.000000000123720820519974                 0                 0   0       0
##      0.0000000142143709248919                   0                 0   0       0
##      0.0000000203570784591136                   0                 0   0       0
##      0.0000000942663046181582                   0                 0   0       0
##      0.0381424863643358                         0                 0   0       0
##      0.0395235614826762                         0                 0   0       0
##      0.0398504564629362                         0                 0   0       0
##      0.0449831541922517                         0                 0   0       0
##      0.150208567676068                          0                 0   0       0
##      0.291704657263826                          0                 0   0       0
##      0.31263158525612                           0                 0   0       0
##      0.313581394222809                          0                 0   0       0
##      0.399450114450523                          0                 0   0       0
##      0.419739887455571                          0                 0   0       0
##      0.425358901761228                          0                 0   0       0
##      0.594035429893685                          0                 0   0       0
##      0.671638488556335                          0                 0   0       0
##      0.688092298985074                          0                 0   0       0
##      0.806600378227794                          0                 0   0       0
##      0.867455094638368                          0                 0   0       0
##      0.897003448844096                          0                 0   0       0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.639583333333333 0.907785087701754 1
##      0.000000000123720820519974                 0                 0 0
##      0.0000000142143709248919                   0                 0 0
##      0.0000000203570784591136                   0                 0 0
##      0.0000000942663046181582                   0                 0 0
##      0.0381424863643358                         0                 0 0
##      0.0395235614826762                         0                 0 0
##      0.0398504564629362                         0                 0 0
##      0.0449831541922517                         0                 0 0
##      0.150208567676068                          0                 0 0
##      0.291704657263826                          0                 0 0
##      0.31263158525612                           0                 0 0
##      0.313581394222809                          0                 0 0
##      0.399450114450523                          0                 0 0
##      0.419739887455571                          0                 0 0
##      0.425358901761228                          0                 0 0
##      0.594035429893685                          0                 0 0
##      0.671638488556335                          0                 0 0
##      0.688092298985074                          0                 0 0
##      0.806600378227794                          0                 0 0
##      0.867455094638368                          0                 0 0
##      0.897003448844096                          0                 0 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 1.34930555555556 4.020833333 6.15
##      0.000000000123720820519974                0           0    0
##      0.0000000142143709248919                  0           0    0
##      0.0000000203570784591136                  0           0    0
##      0.0000000942663046181582                  0           0    0
##      0.0381424863643358                        0           0    0
##      0.0395235614826762                        0           0    0
##      0.0398504564629362                        0           0    0
##      0.0449831541922517                        0           0    0
##      0.150208567676068                         0           0    0
##      0.291704657263826                         0           0    0
##      0.31263158525612                          0           0    0
##      0.313581394222809                         0           0    0
##      0.399450114450523                         0           0    0
##      0.419739887455571                         0           0    0
##      0.425358901761228                         0           0    0
##      0.594035429893685                         0           0    0
##      0.671638488556335                         0           0    0
##      0.688092298985074                         0           0    0
##      0.806600378227794                         0           0    0
##      0.867455094638368                         0           0    0
##      0.897003448844096                         0           0    0
## 
## , , OTT_Time = 3, Snapchat_Time = 0.304861111111111, Instagram_Time = 0.190972222222222
## 
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.125 0.142361111111111 0.152777777777778
##      0.000000000123720820519974     0                 0                 0
##      0.0000000142143709248919       0                 0                 0
##      0.0000000203570784591136       0                 0                 0
##      0.0000000942663046181582       0                 0                 0
##      0.0381424863643358             0                 0                 0
##      0.0395235614826762             0                 0                 0
##      0.0398504564629362             0                 0                 0
##      0.0449831541922517             0                 0                 0
##      0.150208567676068              0                 0                 0
##      0.291704657263826              0                 0                 0
##      0.31263158525612               0                 0                 0
##      0.313581394222809              0                 0                 0
##      0.399450114450523              0                 0                 0
##      0.419739887455571              0                 0                 0
##      0.425358901761228              0                 0                 0
##      0.594035429893685              0                 0                 0
##      0.671638488556335              0                 0                 0
##      0.688092298985074              0                 0                 0
##      0.806600378227794              0                 0                 0
##      0.867455094638368              0                 0                 0
##      0.897003448844096              0                 0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.174305555555556 0.208333333333333
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.220833333333333 0.25 0.270833333333333
##      0.000000000123720820519974                 0    0                 0
##      0.0000000142143709248919                   0    0                 0
##      0.0000000203570784591136                   0    0                 0
##      0.0000000942663046181582                   0    0                 0
##      0.0381424863643358                         0    0                 0
##      0.0395235614826762                         0    0                 0
##      0.0398504564629362                         0    0                 0
##      0.0449831541922517                         0    0                 0
##      0.150208567676068                          0    0                 0
##      0.291704657263826                          0    0                 0
##      0.31263158525612                           0    0                 0
##      0.313581394222809                          0    0                 0
##      0.399450114450523                          0    0                 0
##      0.419739887455571                          0    0                 0
##      0.425358901761228                          0    0                 0
##      0.594035429893685                          0    0                 0
##      0.671638488556335                          0    0                 0
##      0.688092298985074                          0    0                 0
##      0.806600378227794                          0    0                 0
##      0.867455094638368                          0    0                 0
##      0.897003448844096                          0    0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.289583333333333 0.371527777777778
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.409722222222222 0.416666666666667 0.5 0.55625
##      0.000000000123720820519974                 0                 0   0       0
##      0.0000000142143709248919                   0                 0   0       0
##      0.0000000203570784591136                   0                 0   0       0
##      0.0000000942663046181582                   0                 0   0       0
##      0.0381424863643358                         0                 0   0       0
##      0.0395235614826762                         0                 0   0       0
##      0.0398504564629362                         0                 0   0       0
##      0.0449831541922517                         0                 0   0       0
##      0.150208567676068                          0                 0   0       0
##      0.291704657263826                          0                 0   0       0
##      0.31263158525612                           0                 0   0       0
##      0.313581394222809                          0                 0   0       0
##      0.399450114450523                          0                 0   0       0
##      0.419739887455571                          0                 0   0       0
##      0.425358901761228                          0                 0   0       0
##      0.594035429893685                          0                 0   0       0
##      0.671638488556335                          0                 0   0       0
##      0.688092298985074                          0                 0   0       0
##      0.806600378227794                          0                 0   0       0
##      0.867455094638368                          0                 0   0       0
##      0.897003448844096                          0                 0   0       0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.639583333333333 0.907785087701754 1
##      0.000000000123720820519974                 0                 0 0
##      0.0000000142143709248919                   0                 0 0
##      0.0000000203570784591136                   0                 0 0
##      0.0000000942663046181582                   0                 0 0
##      0.0381424863643358                         0                 0 0
##      0.0395235614826762                         0                 0 0
##      0.0398504564629362                         0                 0 0
##      0.0449831541922517                         0                 0 0
##      0.150208567676068                          0                 0 0
##      0.291704657263826                          0                 0 0
##      0.31263158525612                           0                 0 0
##      0.313581394222809                          0                 0 0
##      0.399450114450523                          0                 0 0
##      0.419739887455571                          0                 0 0
##      0.425358901761228                          0                 0 0
##      0.594035429893685                          0                 0 0
##      0.671638488556335                          0                 0 0
##      0.688092298985074                          0                 0 0
##      0.806600378227794                          0                 0 0
##      0.867455094638368                          0                 0 0
##      0.897003448844096                          0                 0 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 1.34930555555556 4.020833333 6.15
##      0.000000000123720820519974                0           0    0
##      0.0000000142143709248919                  0           0    0
##      0.0000000203570784591136                  0           0    0
##      0.0000000942663046181582                  0           0    0
##      0.0381424863643358                        0           0    0
##      0.0395235614826762                        0           0    0
##      0.0398504564629362                        0           0    0
##      0.0449831541922517                        0           0    0
##      0.150208567676068                         0           0    0
##      0.291704657263826                         0           0    0
##      0.31263158525612                          0           0    0
##      0.313581394222809                         0           0    0
##      0.399450114450523                         0           0    0
##      0.419739887455571                         0           0    0
##      0.425358901761228                         0           0    0
##      0.594035429893685                         0           0    0
##      0.671638488556335                         0           0    0
##      0.688092298985074                         0           0    0
##      0.806600378227794                         0           0    0
##      0.867455094638368                         0           0    0
##      0.897003448844096                         0           0    0
## 
## , , OTT_Time = 14.5, Snapchat_Time = 0.304861111111111, Instagram_Time = 0.190972222222222
## 
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.125 0.142361111111111 0.152777777777778
##      0.000000000123720820519974     0                 0                 0
##      0.0000000142143709248919       0                 0                 0
##      0.0000000203570784591136       0                 0                 0
##      0.0000000942663046181582       0                 0                 0
##      0.0381424863643358             0                 0                 0
##      0.0395235614826762             0                 0                 0
##      0.0398504564629362             0                 0                 0
##      0.0449831541922517             0                 0                 0
##      0.150208567676068              0                 0                 0
##      0.291704657263826              0                 0                 0
##      0.31263158525612               0                 0                 0
##      0.313581394222809              0                 0                 0
##      0.399450114450523              0                 0                 0
##      0.419739887455571              0                 0                 0
##      0.425358901761228              0                 0                 0
##      0.594035429893685              0                 0                 0
##      0.671638488556335              0                 0                 0
##      0.688092298985074              0                 0                 0
##      0.806600378227794              0                 0                 0
##      0.867455094638368              0                 0                 0
##      0.897003448844096              0                 0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.174305555555556 0.208333333333333
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.220833333333333 0.25 0.270833333333333
##      0.000000000123720820519974                 0    0                 0
##      0.0000000142143709248919                   0    0                 0
##      0.0000000203570784591136                   0    0                 0
##      0.0000000942663046181582                   0    0                 0
##      0.0381424863643358                         0    0                 0
##      0.0395235614826762                         0    0                 0
##      0.0398504564629362                         0    0                 0
##      0.0449831541922517                         0    0                 0
##      0.150208567676068                          0    0                 0
##      0.291704657263826                          0    0                 0
##      0.31263158525612                           0    0                 0
##      0.313581394222809                          0    0                 0
##      0.399450114450523                          0    0                 0
##      0.419739887455571                          0    0                 0
##      0.425358901761228                          0    0                 0
##      0.594035429893685                          0    0                 0
##      0.671638488556335                          0    0                 0
##      0.688092298985074                          0    0                 0
##      0.806600378227794                          0    0                 0
##      0.867455094638368                          0    0                 0
##      0.897003448844096                          0    0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.289583333333333 0.371527777777778
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.409722222222222 0.416666666666667 0.5 0.55625
##      0.000000000123720820519974                 0                 0   0       0
##      0.0000000142143709248919                   0                 0   0       0
##      0.0000000203570784591136                   0                 0   0       0
##      0.0000000942663046181582                   0                 0   0       0
##      0.0381424863643358                         0                 0   0       0
##      0.0395235614826762                         0                 0   0       0
##      0.0398504564629362                         0                 0   0       0
##      0.0449831541922517                         0                 0   0       0
##      0.150208567676068                          0                 0   0       0
##      0.291704657263826                          0                 0   0       0
##      0.31263158525612                           0                 0   0       0
##      0.313581394222809                          0                 0   0       0
##      0.399450114450523                          0                 0   0       0
##      0.419739887455571                          0                 0   0       0
##      0.425358901761228                          0                 0   0       0
##      0.594035429893685                          0                 0   0       0
##      0.671638488556335                          0                 0   0       0
##      0.688092298985074                          0                 0   0       0
##      0.806600378227794                          0                 0   0       0
##      0.867455094638368                          0                 0   0       0
##      0.897003448844096                          0                 0   0       0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.639583333333333 0.907785087701754 1
##      0.000000000123720820519974                 0                 0 0
##      0.0000000142143709248919                   0                 0 0
##      0.0000000203570784591136                   0                 0 0
##      0.0000000942663046181582                   0                 0 0
##      0.0381424863643358                         0                 0 0
##      0.0395235614826762                         0                 0 0
##      0.0398504564629362                         0                 0 0
##      0.0449831541922517                         0                 0 0
##      0.150208567676068                          0                 0 0
##      0.291704657263826                          0                 0 0
##      0.31263158525612                           0                 0 0
##      0.313581394222809                          0                 0 0
##      0.399450114450523                          0                 0 0
##      0.419739887455571                          0                 0 0
##      0.425358901761228                          0                 0 0
##      0.594035429893685                          0                 0 0
##      0.671638488556335                          0                 0 0
##      0.688092298985074                          0                 0 0
##      0.806600378227794                          0                 0 0
##      0.867455094638368                          0                 0 0
##      0.897003448844096                          0                 0 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 1.34930555555556 4.020833333 6.15
##      0.000000000123720820519974                0           0    0
##      0.0000000142143709248919                  0           0    0
##      0.0000000203570784591136                  0           0    0
##      0.0000000942663046181582                  0           0    0
##      0.0381424863643358                        0           0    0
##      0.0395235614826762                        0           0    0
##      0.0398504564629362                        0           0    0
##      0.0449831541922517                        0           0    0
##      0.150208567676068                         0           0    0
##      0.291704657263826                         0           0    0
##      0.31263158525612                          0           0    0
##      0.313581394222809                         0           0    0
##      0.399450114450523                         0           0    0
##      0.419739887455571                         0           0    0
##      0.425358901761228                         0           0    0
##      0.594035429893685                         0           0    0
##      0.671638488556335                         0           0    0
##      0.688092298985074                         0           0    0
##      0.806600378227794                         0           0    0
##      0.867455094638368                         0           0    0
##      0.897003448844096                         0           0    0
## 
## , , OTT_Time = 0, Snapchat_Time = 0.503124999997222, Instagram_Time = 0.190972222222222
## 
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.125 0.142361111111111 0.152777777777778
##      0.000000000123720820519974     0                 0                 0
##      0.0000000142143709248919       0                 0                 0
##      0.0000000203570784591136       0                 0                 0
##      0.0000000942663046181582       0                 0                 0
##      0.0381424863643358             0                 0                 0
##      0.0395235614826762             0                 0                 0
##      0.0398504564629362             0                 0                 0
##      0.0449831541922517             0                 0                 0
##      0.150208567676068              0                 0                 0
##      0.291704657263826              0                 0                 0
##      0.31263158525612               0                 0                 0
##      0.313581394222809              0                 0                 0
##      0.399450114450523              0                 0                 0
##      0.419739887455571              0                 0                 0
##      0.425358901761228              0                 0                 0
##      0.594035429893685              0                 0                 0
##      0.671638488556335              0                 0                 0
##      0.688092298985074              0                 0                 0
##      0.806600378227794              0                 0                 0
##      0.867455094638368              0                 0                 0
##      0.897003448844096              0                 0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.174305555555556 0.208333333333333
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.220833333333333 0.25 0.270833333333333
##      0.000000000123720820519974                 0    0                 0
##      0.0000000142143709248919                   0    0                 0
##      0.0000000203570784591136                   0    0                 0
##      0.0000000942663046181582                   0    0                 0
##      0.0381424863643358                         0    0                 0
##      0.0395235614826762                         0    0                 0
##      0.0398504564629362                         0    0                 0
##      0.0449831541922517                         0    0                 0
##      0.150208567676068                          0    0                 0
##      0.291704657263826                          0    0                 0
##      0.31263158525612                           0    0                 0
##      0.313581394222809                          0    0                 0
##      0.399450114450523                          0    0                 0
##      0.419739887455571                          0    0                 0
##      0.425358901761228                          0    0                 0
##      0.594035429893685                          0    0                 0
##      0.671638488556335                          0    0                 0
##      0.688092298985074                          0    0                 0
##      0.806600378227794                          0    0                 0
##      0.867455094638368                          0    0                 0
##      0.897003448844096                          0    0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.289583333333333 0.371527777777778
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.409722222222222 0.416666666666667 0.5 0.55625
##      0.000000000123720820519974                 0                 0   0       0
##      0.0000000142143709248919                   0                 0   0       0
##      0.0000000203570784591136                   0                 0   0       0
##      0.0000000942663046181582                   0                 0   0       0
##      0.0381424863643358                         0                 0   0       0
##      0.0395235614826762                         0                 0   0       0
##      0.0398504564629362                         0                 0   0       0
##      0.0449831541922517                         0                 0   0       0
##      0.150208567676068                          0                 0   0       0
##      0.291704657263826                          0                 0   0       0
##      0.31263158525612                           0                 0   0       0
##      0.313581394222809                          0                 0   0       0
##      0.399450114450523                          0                 0   0       0
##      0.419739887455571                          0                 0   0       0
##      0.425358901761228                          0                 0   0       0
##      0.594035429893685                          0                 0   0       0
##      0.671638488556335                          0                 0   0       0
##      0.688092298985074                          0                 0   0       0
##      0.806600378227794                          0                 0   0       0
##      0.867455094638368                          0                 0   0       0
##      0.897003448844096                          0                 0   0       0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.639583333333333 0.907785087701754 1
##      0.000000000123720820519974                 0                 0 0
##      0.0000000142143709248919                   0                 0 0
##      0.0000000203570784591136                   0                 0 0
##      0.0000000942663046181582                   0                 0 0
##      0.0381424863643358                         0                 0 0
##      0.0395235614826762                         0                 0 0
##      0.0398504564629362                         0                 0 0
##      0.0449831541922517                         0                 0 0
##      0.150208567676068                          0                 0 0
##      0.291704657263826                          0                 0 0
##      0.31263158525612                           0                 0 0
##      0.313581394222809                          0                 0 0
##      0.399450114450523                          0                 0 0
##      0.419739887455571                          0                 0 0
##      0.425358901761228                          0                 1 0
##      0.594035429893685                          0                 0 0
##      0.671638488556335                          0                 0 0
##      0.688092298985074                          0                 0 0
##      0.806600378227794                          0                 0 0
##      0.867455094638368                          0                 0 0
##      0.897003448844096                          0                 0 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 1.34930555555556 4.020833333 6.15
##      0.000000000123720820519974                0           0    0
##      0.0000000142143709248919                  0           0    0
##      0.0000000203570784591136                  0           0    0
##      0.0000000942663046181582                  0           0    0
##      0.0381424863643358                        0           0    0
##      0.0395235614826762                        0           0    0
##      0.0398504564629362                        0           0    0
##      0.0449831541922517                        0           0    0
##      0.150208567676068                         0           0    0
##      0.291704657263826                         0           0    0
##      0.31263158525612                          0           0    0
##      0.313581394222809                         0           0    0
##      0.399450114450523                         0           0    0
##      0.419739887455571                         0           0    0
##      0.425358901761228                         0           0    0
##      0.594035429893685                         0           0    0
##      0.671638488556335                         0           0    0
##      0.688092298985074                         0           0    0
##      0.806600378227794                         0           0    0
##      0.867455094638368                         0           0    0
##      0.897003448844096                         0           0    0
## 
## , , OTT_Time = 0.102777777777778, Snapchat_Time = 0.503124999997222, Instagram_Time = 0.190972222222222
## 
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.125 0.142361111111111 0.152777777777778
##      0.000000000123720820519974     0                 0                 0
##      0.0000000142143709248919       0                 0                 0
##      0.0000000203570784591136       0                 0                 0
##      0.0000000942663046181582       0                 0                 0
##      0.0381424863643358             0                 0                 0
##      0.0395235614826762             0                 0                 0
##      0.0398504564629362             0                 0                 0
##      0.0449831541922517             0                 0                 0
##      0.150208567676068              0                 0                 0
##      0.291704657263826              0                 0                 0
##      0.31263158525612               0                 0                 0
##      0.313581394222809              0                 0                 0
##      0.399450114450523              0                 0                 0
##      0.419739887455571              0                 0                 0
##      0.425358901761228              0                 0                 0
##      0.594035429893685              0                 0                 0
##      0.671638488556335              0                 0                 0
##      0.688092298985074              0                 0                 0
##      0.806600378227794              0                 0                 0
##      0.867455094638368              0                 0                 0
##      0.897003448844096              0                 0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.174305555555556 0.208333333333333
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.220833333333333 0.25 0.270833333333333
##      0.000000000123720820519974                 0    0                 0
##      0.0000000142143709248919                   0    0                 0
##      0.0000000203570784591136                   0    0                 0
##      0.0000000942663046181582                   0    0                 0
##      0.0381424863643358                         0    0                 0
##      0.0395235614826762                         0    0                 0
##      0.0398504564629362                         0    0                 0
##      0.0449831541922517                         0    0                 0
##      0.150208567676068                          0    0                 0
##      0.291704657263826                          0    0                 0
##      0.31263158525612                           0    0                 0
##      0.313581394222809                          0    0                 0
##      0.399450114450523                          0    0                 0
##      0.419739887455571                          0    0                 0
##      0.425358901761228                          0    0                 0
##      0.594035429893685                          0    0                 0
##      0.671638488556335                          0    0                 0
##      0.688092298985074                          0    0                 0
##      0.806600378227794                          0    0                 0
##      0.867455094638368                          0    0                 0
##      0.897003448844096                          0    0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.289583333333333 0.371527777777778
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.409722222222222 0.416666666666667 0.5 0.55625
##      0.000000000123720820519974                 0                 0   0       0
##      0.0000000142143709248919                   0                 0   0       0
##      0.0000000203570784591136                   0                 0   0       0
##      0.0000000942663046181582                   0                 0   0       0
##      0.0381424863643358                         0                 0   0       0
##      0.0395235614826762                         0                 0   0       0
##      0.0398504564629362                         0                 0   0       0
##      0.0449831541922517                         0                 0   0       0
##      0.150208567676068                          0                 0   0       0
##      0.291704657263826                          0                 0   0       0
##      0.31263158525612                           0                 0   0       0
##      0.313581394222809                          0                 0   0       0
##      0.399450114450523                          0                 0   0       0
##      0.419739887455571                          0                 0   0       0
##      0.425358901761228                          0                 0   0       0
##      0.594035429893685                          0                 0   0       0
##      0.671638488556335                          0                 0   0       0
##      0.688092298985074                          0                 0   0       0
##      0.806600378227794                          0                 0   0       0
##      0.867455094638368                          0                 0   0       0
##      0.897003448844096                          0                 0   0       0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.639583333333333 0.907785087701754 1
##      0.000000000123720820519974                 0                 0 0
##      0.0000000142143709248919                   0                 0 0
##      0.0000000203570784591136                   0                 0 0
##      0.0000000942663046181582                   0                 0 0
##      0.0381424863643358                         0                 0 0
##      0.0395235614826762                         0                 0 0
##      0.0398504564629362                         0                 0 0
##      0.0449831541922517                         0                 0 0
##      0.150208567676068                          0                 0 0
##      0.291704657263826                          0                 0 0
##      0.31263158525612                           0                 0 0
##      0.313581394222809                          0                 0 0
##      0.399450114450523                          0                 0 0
##      0.419739887455571                          0                 0 0
##      0.425358901761228                          0                 0 0
##      0.594035429893685                          0                 0 0
##      0.671638488556335                          0                 0 0
##      0.688092298985074                          0                 0 0
##      0.806600378227794                          0                 0 0
##      0.867455094638368                          0                 0 0
##      0.897003448844096                          0                 0 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 1.34930555555556 4.020833333 6.15
##      0.000000000123720820519974                0           0    0
##      0.0000000142143709248919                  0           0    0
##      0.0000000203570784591136                  0           0    0
##      0.0000000942663046181582                  0           0    0
##      0.0381424863643358                        0           0    0
##      0.0395235614826762                        0           0    0
##      0.0398504564629362                        0           0    0
##      0.0449831541922517                        0           0    0
##      0.150208567676068                         0           0    0
##      0.291704657263826                         0           0    0
##      0.31263158525612                          0           0    0
##      0.313581394222809                         0           0    0
##      0.399450114450523                         0           0    0
##      0.419739887455571                         0           0    0
##      0.425358901761228                         0           0    0
##      0.594035429893685                         0           0    0
##      0.671638488556335                         0           0    0
##      0.688092298985074                         0           0    0
##      0.806600378227794                         0           0    0
##      0.867455094638368                         0           0    0
##      0.897003448844096                         0           0    0
## 
## , , OTT_Time = 0.125, Snapchat_Time = 0.503124999997222, Instagram_Time = 0.190972222222222
## 
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.125 0.142361111111111 0.152777777777778
##      0.000000000123720820519974     0                 0                 0
##      0.0000000142143709248919       0                 0                 0
##      0.0000000203570784591136       0                 0                 0
##      0.0000000942663046181582       0                 0                 0
##      0.0381424863643358             0                 0                 0
##      0.0395235614826762             0                 0                 0
##      0.0398504564629362             0                 0                 0
##      0.0449831541922517             0                 0                 0
##      0.150208567676068              0                 0                 0
##      0.291704657263826              0                 0                 0
##      0.31263158525612               0                 0                 0
##      0.313581394222809              0                 0                 0
##      0.399450114450523              0                 0                 0
##      0.419739887455571              0                 0                 0
##      0.425358901761228              0                 0                 0
##      0.594035429893685              0                 0                 0
##      0.671638488556335              0                 0                 0
##      0.688092298985074              0                 0                 0
##      0.806600378227794              0                 0                 0
##      0.867455094638368              0                 0                 0
##      0.897003448844096              0                 0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.174305555555556 0.208333333333333
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.220833333333333 0.25 0.270833333333333
##      0.000000000123720820519974                 0    0                 0
##      0.0000000142143709248919                   0    0                 0
##      0.0000000203570784591136                   0    0                 0
##      0.0000000942663046181582                   0    0                 0
##      0.0381424863643358                         0    0                 0
##      0.0395235614826762                         0    0                 0
##      0.0398504564629362                         0    0                 0
##      0.0449831541922517                         0    0                 0
##      0.150208567676068                          0    0                 0
##      0.291704657263826                          0    0                 0
##      0.31263158525612                           0    0                 0
##      0.313581394222809                          0    0                 0
##      0.399450114450523                          0    0                 0
##      0.419739887455571                          0    0                 0
##      0.425358901761228                          0    0                 0
##      0.594035429893685                          0    0                 0
##      0.671638488556335                          0    0                 0
##      0.688092298985074                          0    0                 0
##      0.806600378227794                          0    0                 0
##      0.867455094638368                          0    0                 0
##      0.897003448844096                          0    0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.289583333333333 0.371527777777778
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.409722222222222 0.416666666666667 0.5 0.55625
##      0.000000000123720820519974                 0                 0   0       0
##      0.0000000142143709248919                   0                 0   0       0
##      0.0000000203570784591136                   0                 0   0       0
##      0.0000000942663046181582                   0                 0   0       0
##      0.0381424863643358                         0                 0   0       0
##      0.0395235614826762                         0                 0   0       0
##      0.0398504564629362                         0                 0   0       0
##      0.0449831541922517                         0                 0   0       0
##      0.150208567676068                          0                 0   0       0
##      0.291704657263826                          0                 0   0       0
##      0.31263158525612                           0                 0   0       0
##      0.313581394222809                          0                 0   0       0
##      0.399450114450523                          0                 0   0       0
##      0.419739887455571                          0                 0   0       0
##      0.425358901761228                          0                 0   0       0
##      0.594035429893685                          0                 0   0       0
##      0.671638488556335                          0                 0   0       0
##      0.688092298985074                          0                 0   0       0
##      0.806600378227794                          0                 0   0       0
##      0.867455094638368                          0                 0   0       0
##      0.897003448844096                          0                 0   0       0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.639583333333333 0.907785087701754 1
##      0.000000000123720820519974                 0                 0 0
##      0.0000000142143709248919                   0                 0 0
##      0.0000000203570784591136                   0                 0 0
##      0.0000000942663046181582                   0                 0 0
##      0.0381424863643358                         0                 0 0
##      0.0395235614826762                         0                 0 0
##      0.0398504564629362                         0                 0 0
##      0.0449831541922517                         0                 0 0
##      0.150208567676068                          0                 0 0
##      0.291704657263826                          0                 0 0
##      0.31263158525612                           0                 0 0
##      0.313581394222809                          0                 0 0
##      0.399450114450523                          0                 0 0
##      0.419739887455571                          0                 0 0
##      0.425358901761228                          0                 0 0
##      0.594035429893685                          0                 0 0
##      0.671638488556335                          0                 0 0
##      0.688092298985074                          0                 0 0
##      0.806600378227794                          0                 0 0
##      0.867455094638368                          0                 0 0
##      0.897003448844096                          0                 0 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 1.34930555555556 4.020833333 6.15
##      0.000000000123720820519974                0           0    0
##      0.0000000142143709248919                  0           0    0
##      0.0000000203570784591136                  0           0    0
##      0.0000000942663046181582                  0           0    0
##      0.0381424863643358                        0           0    0
##      0.0395235614826762                        0           0    0
##      0.0398504564629362                        0           0    0
##      0.0449831541922517                        0           0    0
##      0.150208567676068                         0           0    0
##      0.291704657263826                         0           0    0
##      0.31263158525612                          0           0    0
##      0.313581394222809                         0           0    0
##      0.399450114450523                         0           0    0
##      0.419739887455571                         0           0    0
##      0.425358901761228                         0           0    0
##      0.594035429893685                         0           0    0
##      0.671638488556335                         0           0    0
##      0.688092298985074                         0           0    0
##      0.806600378227794                         0           0    0
##      0.867455094638368                         0           0    0
##      0.897003448844096                         0           0    0
## 
## , , OTT_Time = 0.416666666666667, Snapchat_Time = 0.503124999997222, Instagram_Time = 0.190972222222222
## 
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.125 0.142361111111111 0.152777777777778
##      0.000000000123720820519974     0                 0                 0
##      0.0000000142143709248919       0                 0                 0
##      0.0000000203570784591136       0                 0                 0
##      0.0000000942663046181582       0                 0                 0
##      0.0381424863643358             0                 0                 0
##      0.0395235614826762             0                 0                 0
##      0.0398504564629362             0                 0                 0
##      0.0449831541922517             0                 0                 0
##      0.150208567676068              0                 0                 0
##      0.291704657263826              0                 0                 0
##      0.31263158525612               0                 0                 0
##      0.313581394222809              0                 0                 0
##      0.399450114450523              0                 0                 0
##      0.419739887455571              0                 0                 0
##      0.425358901761228              0                 0                 0
##      0.594035429893685              0                 0                 0
##      0.671638488556335              0                 0                 0
##      0.688092298985074              0                 0                 0
##      0.806600378227794              0                 0                 0
##      0.867455094638368              0                 0                 0
##      0.897003448844096              0                 0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.174305555555556 0.208333333333333
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.220833333333333 0.25 0.270833333333333
##      0.000000000123720820519974                 0    0                 0
##      0.0000000142143709248919                   0    0                 0
##      0.0000000203570784591136                   0    0                 0
##      0.0000000942663046181582                   0    0                 0
##      0.0381424863643358                         0    0                 0
##      0.0395235614826762                         0    0                 0
##      0.0398504564629362                         0    0                 0
##      0.0449831541922517                         0    0                 0
##      0.150208567676068                          0    0                 0
##      0.291704657263826                          0    0                 0
##      0.31263158525612                           0    0                 0
##      0.313581394222809                          0    0                 0
##      0.399450114450523                          0    0                 0
##      0.419739887455571                          0    0                 0
##      0.425358901761228                          0    0                 0
##      0.594035429893685                          0    0                 0
##      0.671638488556335                          0    0                 0
##      0.688092298985074                          0    0                 0
##      0.806600378227794                          0    0                 0
##      0.867455094638368                          0    0                 0
##      0.897003448844096                          0    0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.289583333333333 0.371527777777778
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.409722222222222 0.416666666666667 0.5 0.55625
##      0.000000000123720820519974                 0                 0   0       0
##      0.0000000142143709248919                   0                 0   0       0
##      0.0000000203570784591136                   0                 0   0       0
##      0.0000000942663046181582                   0                 0   0       0
##      0.0381424863643358                         0                 0   0       0
##      0.0395235614826762                         0                 0   0       0
##      0.0398504564629362                         0                 0   0       0
##      0.0449831541922517                         0                 0   0       0
##      0.150208567676068                          0                 0   0       0
##      0.291704657263826                          0                 0   0       0
##      0.31263158525612                           0                 0   0       0
##      0.313581394222809                          0                 0   0       0
##      0.399450114450523                          0                 0   0       0
##      0.419739887455571                          0                 0   0       0
##      0.425358901761228                          0                 0   0       0
##      0.594035429893685                          0                 0   0       0
##      0.671638488556335                          0                 0   0       0
##      0.688092298985074                          0                 0   0       0
##      0.806600378227794                          0                 0   0       0
##      0.867455094638368                          0                 0   0       0
##      0.897003448844096                          0                 0   0       0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.639583333333333 0.907785087701754 1
##      0.000000000123720820519974                 0                 0 0
##      0.0000000142143709248919                   0                 0 0
##      0.0000000203570784591136                   0                 0 0
##      0.0000000942663046181582                   0                 0 0
##      0.0381424863643358                         0                 0 0
##      0.0395235614826762                         0                 0 0
##      0.0398504564629362                         0                 0 0
##      0.0449831541922517                         0                 0 0
##      0.150208567676068                          0                 0 0
##      0.291704657263826                          0                 0 0
##      0.31263158525612                           0                 0 0
##      0.313581394222809                          0                 0 0
##      0.399450114450523                          0                 0 0
##      0.419739887455571                          0                 0 0
##      0.425358901761228                          0                 0 0
##      0.594035429893685                          0                 0 0
##      0.671638488556335                          0                 0 0
##      0.688092298985074                          0                 0 0
##      0.806600378227794                          0                 0 0
##      0.867455094638368                          0                 0 0
##      0.897003448844096                          0                 0 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 1.34930555555556 4.020833333 6.15
##      0.000000000123720820519974                0           0    0
##      0.0000000142143709248919                  0           0    0
##      0.0000000203570784591136                  0           0    0
##      0.0000000942663046181582                  0           0    0
##      0.0381424863643358                        0           0    0
##      0.0395235614826762                        0           0    0
##      0.0398504564629362                        0           0    0
##      0.0449831541922517                        0           0    0
##      0.150208567676068                         0           0    0
##      0.291704657263826                         0           0    0
##      0.31263158525612                          0           0    0
##      0.313581394222809                         0           0    0
##      0.399450114450523                         0           0    0
##      0.419739887455571                         0           0    0
##      0.425358901761228                         0           0    0
##      0.594035429893685                         0           0    0
##      0.671638488556335                         0           0    0
##      0.688092298985074                         0           0    0
##      0.806600378227794                         0           0    0
##      0.867455094638368                         0           0    0
##      0.897003448844096                         0           0    0
## 
## , , OTT_Time = 0.5104166667, Snapchat_Time = 0.503124999997222, Instagram_Time = 0.190972222222222
## 
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.125 0.142361111111111 0.152777777777778
##      0.000000000123720820519974     0                 0                 0
##      0.0000000142143709248919       0                 0                 0
##      0.0000000203570784591136       0                 0                 0
##      0.0000000942663046181582       0                 0                 0
##      0.0381424863643358             0                 0                 0
##      0.0395235614826762             0                 0                 0
##      0.0398504564629362             0                 0                 0
##      0.0449831541922517             0                 0                 0
##      0.150208567676068              0                 0                 0
##      0.291704657263826              0                 0                 0
##      0.31263158525612               0                 0                 0
##      0.313581394222809              0                 0                 0
##      0.399450114450523              0                 0                 0
##      0.419739887455571              0                 0                 0
##      0.425358901761228              0                 0                 0
##      0.594035429893685              0                 0                 0
##      0.671638488556335              0                 0                 0
##      0.688092298985074              0                 0                 0
##      0.806600378227794              0                 0                 0
##      0.867455094638368              0                 0                 0
##      0.897003448844096              0                 0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.174305555555556 0.208333333333333
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.220833333333333 0.25 0.270833333333333
##      0.000000000123720820519974                 0    0                 0
##      0.0000000142143709248919                   0    0                 0
##      0.0000000203570784591136                   0    0                 0
##      0.0000000942663046181582                   0    0                 0
##      0.0381424863643358                         0    0                 0
##      0.0395235614826762                         0    0                 0
##      0.0398504564629362                         0    0                 0
##      0.0449831541922517                         0    0                 0
##      0.150208567676068                          0    0                 0
##      0.291704657263826                          0    0                 0
##      0.31263158525612                           0    0                 0
##      0.313581394222809                          0    0                 0
##      0.399450114450523                          0    0                 0
##      0.419739887455571                          0    0                 0
##      0.425358901761228                          0    0                 0
##      0.594035429893685                          0    0                 0
##      0.671638488556335                          0    0                 0
##      0.688092298985074                          0    0                 0
##      0.806600378227794                          0    0                 0
##      0.867455094638368                          0    0                 0
##      0.897003448844096                          0    0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.289583333333333 0.371527777777778
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.409722222222222 0.416666666666667 0.5 0.55625
##      0.000000000123720820519974                 0                 0   0       0
##      0.0000000142143709248919                   0                 0   0       0
##      0.0000000203570784591136                   0                 0   0       0
##      0.0000000942663046181582                   0                 0   0       0
##      0.0381424863643358                         0                 0   0       0
##      0.0395235614826762                         0                 0   0       0
##      0.0398504564629362                         0                 0   0       0
##      0.0449831541922517                         0                 0   0       0
##      0.150208567676068                          0                 0   0       0
##      0.291704657263826                          0                 0   0       0
##      0.31263158525612                           0                 0   0       0
##      0.313581394222809                          0                 0   0       0
##      0.399450114450523                          0                 0   0       0
##      0.419739887455571                          0                 0   0       0
##      0.425358901761228                          0                 0   0       0
##      0.594035429893685                          0                 0   0       0
##      0.671638488556335                          0                 0   0       0
##      0.688092298985074                          0                 0   0       0
##      0.806600378227794                          0                 0   0       0
##      0.867455094638368                          0                 0   0       0
##      0.897003448844096                          0                 0   0       0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.639583333333333 0.907785087701754 1
##      0.000000000123720820519974                 0                 0 0
##      0.0000000142143709248919                   0                 0 0
##      0.0000000203570784591136                   0                 0 0
##      0.0000000942663046181582                   0                 0 0
##      0.0381424863643358                         0                 0 0
##      0.0395235614826762                         0                 0 0
##      0.0398504564629362                         0                 0 0
##      0.0449831541922517                         0                 0 0
##      0.150208567676068                          0                 0 0
##      0.291704657263826                          0                 0 0
##      0.31263158525612                           0                 0 0
##      0.313581394222809                          0                 0 0
##      0.399450114450523                          0                 0 0
##      0.419739887455571                          0                 0 0
##      0.425358901761228                          0                 0 0
##      0.594035429893685                          0                 0 0
##      0.671638488556335                          0                 0 0
##      0.688092298985074                          0                 0 0
##      0.806600378227794                          0                 0 0
##      0.867455094638368                          0                 0 0
##      0.897003448844096                          0                 0 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 1.34930555555556 4.020833333 6.15
##      0.000000000123720820519974                0           0    0
##      0.0000000142143709248919                  0           0    0
##      0.0000000203570784591136                  0           0    0
##      0.0000000942663046181582                  0           0    0
##      0.0381424863643358                        0           0    0
##      0.0395235614826762                        0           0    0
##      0.0398504564629362                        0           0    0
##      0.0449831541922517                        0           0    0
##      0.150208567676068                         0           0    0
##      0.291704657263826                         0           0    0
##      0.31263158525612                          0           0    0
##      0.313581394222809                         0           0    0
##      0.399450114450523                         0           0    0
##      0.419739887455571                         0           0    0
##      0.425358901761228                         0           0    0
##      0.594035429893685                         0           0    0
##      0.671638488556335                         0           0    0
##      0.688092298985074                         0           0    0
##      0.806600378227794                         0           0    0
##      0.867455094638368                         0           0    0
##      0.897003448844096                         0           0    0
## 
## , , OTT_Time = 1.44460470085726, Snapchat_Time = 0.503124999997222, Instagram_Time = 0.190972222222222
## 
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.125 0.142361111111111 0.152777777777778
##      0.000000000123720820519974     0                 0                 0
##      0.0000000142143709248919       0                 0                 0
##      0.0000000203570784591136       0                 0                 0
##      0.0000000942663046181582       0                 0                 0
##      0.0381424863643358             0                 0                 0
##      0.0395235614826762             0                 0                 0
##      0.0398504564629362             0                 0                 0
##      0.0449831541922517             0                 0                 0
##      0.150208567676068              0                 0                 0
##      0.291704657263826              0                 0                 0
##      0.31263158525612               0                 0                 0
##      0.313581394222809              0                 0                 0
##      0.399450114450523              0                 0                 0
##      0.419739887455571              0                 0                 0
##      0.425358901761228              0                 0                 0
##      0.594035429893685              0                 0                 0
##      0.671638488556335              0                 0                 0
##      0.688092298985074              0                 0                 0
##      0.806600378227794              0                 0                 0
##      0.867455094638368              0                 0                 0
##      0.897003448844096              0                 0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.174305555555556 0.208333333333333
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.220833333333333 0.25 0.270833333333333
##      0.000000000123720820519974                 0    0                 0
##      0.0000000142143709248919                   0    0                 0
##      0.0000000203570784591136                   0    0                 0
##      0.0000000942663046181582                   0    0                 0
##      0.0381424863643358                         0    0                 0
##      0.0395235614826762                         0    0                 0
##      0.0398504564629362                         0    0                 0
##      0.0449831541922517                         0    0                 0
##      0.150208567676068                          0    0                 0
##      0.291704657263826                          0    0                 0
##      0.31263158525612                           0    0                 0
##      0.313581394222809                          0    0                 0
##      0.399450114450523                          0    0                 0
##      0.419739887455571                          0    0                 0
##      0.425358901761228                          0    0                 0
##      0.594035429893685                          0    0                 0
##      0.671638488556335                          0    0                 0
##      0.688092298985074                          0    0                 0
##      0.806600378227794                          0    0                 0
##      0.867455094638368                          0    0                 0
##      0.897003448844096                          0    0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.289583333333333 0.371527777777778
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.409722222222222 0.416666666666667 0.5 0.55625
##      0.000000000123720820519974                 0                 0   0       0
##      0.0000000142143709248919                   0                 0   0       0
##      0.0000000203570784591136                   0                 0   0       0
##      0.0000000942663046181582                   0                 0   0       0
##      0.0381424863643358                         0                 0   0       0
##      0.0395235614826762                         0                 0   0       0
##      0.0398504564629362                         0                 0   0       0
##      0.0449831541922517                         0                 0   0       0
##      0.150208567676068                          0                 0   0       0
##      0.291704657263826                          0                 0   0       0
##      0.31263158525612                           0                 0   0       0
##      0.313581394222809                          0                 0   0       0
##      0.399450114450523                          0                 0   0       0
##      0.419739887455571                          0                 0   0       0
##      0.425358901761228                          0                 0   0       0
##      0.594035429893685                          0                 0   0       0
##      0.671638488556335                          0                 0   0       0
##      0.688092298985074                          0                 0   0       0
##      0.806600378227794                          0                 0   0       0
##      0.867455094638368                          0                 0   0       0
##      0.897003448844096                          0                 0   0       0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.639583333333333 0.907785087701754 1
##      0.000000000123720820519974                 0                 0 0
##      0.0000000142143709248919                   0                 0 0
##      0.0000000203570784591136                   0                 0 0
##      0.0000000942663046181582                   0                 0 0
##      0.0381424863643358                         0                 0 0
##      0.0395235614826762                         0                 0 0
##      0.0398504564629362                         0                 0 0
##      0.0449831541922517                         0                 0 0
##      0.150208567676068                          0                 0 0
##      0.291704657263826                          0                 0 0
##      0.31263158525612                           0                 0 0
##      0.313581394222809                          0                 0 0
##      0.399450114450523                          0                 0 0
##      0.419739887455571                          0                 0 0
##      0.425358901761228                          0                 0 0
##      0.594035429893685                          0                 0 0
##      0.671638488556335                          0                 0 0
##      0.688092298985074                          0                 0 0
##      0.806600378227794                          0                 0 0
##      0.867455094638368                          0                 0 0
##      0.897003448844096                          0                 0 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 1.34930555555556 4.020833333 6.15
##      0.000000000123720820519974                0           0    0
##      0.0000000142143709248919                  0           0    0
##      0.0000000203570784591136                  0           0    0
##      0.0000000942663046181582                  0           0    0
##      0.0381424863643358                        0           0    0
##      0.0395235614826762                        0           0    0
##      0.0398504564629362                        0           0    0
##      0.0449831541922517                        0           0    0
##      0.150208567676068                         0           0    0
##      0.291704657263826                         0           0    0
##      0.31263158525612                          0           0    0
##      0.313581394222809                         0           0    0
##      0.399450114450523                         0           0    0
##      0.419739887455571                         0           0    0
##      0.425358901761228                         0           0    0
##      0.594035429893685                         0           0    0
##      0.671638488556335                         0           0    0
##      0.688092298985074                         0           0    0
##      0.806600378227794                         0           0    0
##      0.867455094638368                         0           0    0
##      0.897003448844096                         0           0    0
## 
## , , OTT_Time = 3, Snapchat_Time = 0.503124999997222, Instagram_Time = 0.190972222222222
## 
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.125 0.142361111111111 0.152777777777778
##      0.000000000123720820519974     0                 0                 0
##      0.0000000142143709248919       0                 0                 0
##      0.0000000203570784591136       0                 0                 0
##      0.0000000942663046181582       0                 0                 0
##      0.0381424863643358             0                 0                 0
##      0.0395235614826762             0                 0                 0
##      0.0398504564629362             0                 0                 0
##      0.0449831541922517             0                 0                 0
##      0.150208567676068              0                 0                 0
##      0.291704657263826              0                 0                 0
##      0.31263158525612               0                 0                 0
##      0.313581394222809              0                 0                 0
##      0.399450114450523              0                 0                 0
##      0.419739887455571              0                 0                 0
##      0.425358901761228              0                 0                 0
##      0.594035429893685              0                 0                 0
##      0.671638488556335              0                 0                 0
##      0.688092298985074              0                 0                 0
##      0.806600378227794              0                 0                 0
##      0.867455094638368              0                 0                 0
##      0.897003448844096              0                 0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.174305555555556 0.208333333333333
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.220833333333333 0.25 0.270833333333333
##      0.000000000123720820519974                 0    0                 0
##      0.0000000142143709248919                   0    0                 0
##      0.0000000203570784591136                   0    0                 0
##      0.0000000942663046181582                   0    0                 0
##      0.0381424863643358                         0    0                 0
##      0.0395235614826762                         0    0                 0
##      0.0398504564629362                         0    0                 0
##      0.0449831541922517                         0    0                 0
##      0.150208567676068                          0    0                 0
##      0.291704657263826                          0    0                 0
##      0.31263158525612                           0    0                 0
##      0.313581394222809                          0    0                 0
##      0.399450114450523                          0    0                 0
##      0.419739887455571                          0    0                 0
##      0.425358901761228                          0    0                 0
##      0.594035429893685                          0    0                 0
##      0.671638488556335                          0    0                 0
##      0.688092298985074                          0    0                 0
##      0.806600378227794                          0    0                 0
##      0.867455094638368                          0    0                 0
##      0.897003448844096                          0    0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.289583333333333 0.371527777777778
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.409722222222222 0.416666666666667 0.5 0.55625
##      0.000000000123720820519974                 0                 0   0       0
##      0.0000000142143709248919                   0                 0   0       0
##      0.0000000203570784591136                   0                 0   0       0
##      0.0000000942663046181582                   0                 0   0       0
##      0.0381424863643358                         0                 0   0       0
##      0.0395235614826762                         0                 0   0       0
##      0.0398504564629362                         0                 0   0       0
##      0.0449831541922517                         0                 0   0       0
##      0.150208567676068                          0                 0   0       0
##      0.291704657263826                          0                 0   0       0
##      0.31263158525612                           0                 0   0       0
##      0.313581394222809                          0                 0   0       0
##      0.399450114450523                          0                 0   0       0
##      0.419739887455571                          0                 0   0       0
##      0.425358901761228                          0                 0   0       0
##      0.594035429893685                          0                 0   0       0
##      0.671638488556335                          0                 0   0       0
##      0.688092298985074                          0                 0   0       0
##      0.806600378227794                          0                 0   0       0
##      0.867455094638368                          0                 0   0       0
##      0.897003448844096                          0                 0   0       0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.639583333333333 0.907785087701754 1
##      0.000000000123720820519974                 0                 0 0
##      0.0000000142143709248919                   0                 0 0
##      0.0000000203570784591136                   0                 0 0
##      0.0000000942663046181582                   0                 0 0
##      0.0381424863643358                         0                 0 0
##      0.0395235614826762                         0                 0 0
##      0.0398504564629362                         0                 0 0
##      0.0449831541922517                         0                 0 0
##      0.150208567676068                          0                 0 0
##      0.291704657263826                          0                 0 0
##      0.31263158525612                           0                 0 0
##      0.313581394222809                          0                 0 0
##      0.399450114450523                          0                 0 0
##      0.419739887455571                          0                 0 0
##      0.425358901761228                          0                 0 0
##      0.594035429893685                          0                 0 0
##      0.671638488556335                          0                 0 0
##      0.688092298985074                          0                 0 0
##      0.806600378227794                          0                 0 0
##      0.867455094638368                          0                 0 0
##      0.897003448844096                          0                 0 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 1.34930555555556 4.020833333 6.15
##      0.000000000123720820519974                0           0    0
##      0.0000000142143709248919                  0           0    0
##      0.0000000203570784591136                  0           0    0
##      0.0000000942663046181582                  0           0    0
##      0.0381424863643358                        0           0    0
##      0.0395235614826762                        0           0    0
##      0.0398504564629362                        0           0    0
##      0.0449831541922517                        0           0    0
##      0.150208567676068                         0           0    0
##      0.291704657263826                         0           0    0
##      0.31263158525612                          0           0    0
##      0.313581394222809                         0           0    0
##      0.399450114450523                         0           0    0
##      0.419739887455571                         0           0    0
##      0.425358901761228                         0           0    0
##      0.594035429893685                         0           0    0
##      0.671638488556335                         0           0    0
##      0.688092298985074                         0           0    0
##      0.806600378227794                         0           0    0
##      0.867455094638368                         0           0    0
##      0.897003448844096                         0           0    0
## 
## , , OTT_Time = 14.5, Snapchat_Time = 0.503124999997222, Instagram_Time = 0.190972222222222
## 
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.125 0.142361111111111 0.152777777777778
##      0.000000000123720820519974     0                 0                 0
##      0.0000000142143709248919       0                 0                 0
##      0.0000000203570784591136       0                 0                 0
##      0.0000000942663046181582       0                 0                 0
##      0.0381424863643358             0                 0                 0
##      0.0395235614826762             0                 0                 0
##      0.0398504564629362             0                 0                 0
##      0.0449831541922517             0                 0                 0
##      0.150208567676068              0                 0                 0
##      0.291704657263826              0                 0                 0
##      0.31263158525612               0                 0                 0
##      0.313581394222809              0                 0                 0
##      0.399450114450523              0                 0                 0
##      0.419739887455571              0                 0                 0
##      0.425358901761228              0                 0                 0
##      0.594035429893685              0                 0                 0
##      0.671638488556335              0                 0                 0
##      0.688092298985074              0                 0                 0
##      0.806600378227794              0                 0                 0
##      0.867455094638368              0                 0                 0
##      0.897003448844096              0                 0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.174305555555556 0.208333333333333
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.220833333333333 0.25 0.270833333333333
##      0.000000000123720820519974                 0    0                 0
##      0.0000000142143709248919                   0    0                 0
##      0.0000000203570784591136                   0    0                 0
##      0.0000000942663046181582                   0    0                 0
##      0.0381424863643358                         0    0                 0
##      0.0395235614826762                         0    0                 0
##      0.0398504564629362                         0    0                 0
##      0.0449831541922517                         0    0                 0
##      0.150208567676068                          0    0                 0
##      0.291704657263826                          0    0                 0
##      0.31263158525612                           0    0                 0
##      0.313581394222809                          0    0                 0
##      0.399450114450523                          0    0                 0
##      0.419739887455571                          0    0                 0
##      0.425358901761228                          0    0                 0
##      0.594035429893685                          0    0                 0
##      0.671638488556335                          0    0                 0
##      0.688092298985074                          0    0                 0
##      0.806600378227794                          0    0                 0
##      0.867455094638368                          0    0                 0
##      0.897003448844096                          0    0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.289583333333333 0.371527777777778
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.409722222222222 0.416666666666667 0.5 0.55625
##      0.000000000123720820519974                 0                 0   0       0
##      0.0000000142143709248919                   0                 0   0       0
##      0.0000000203570784591136                   0                 0   0       0
##      0.0000000942663046181582                   0                 0   0       0
##      0.0381424863643358                         0                 0   0       0
##      0.0395235614826762                         0                 0   0       0
##      0.0398504564629362                         0                 0   0       0
##      0.0449831541922517                         0                 0   0       0
##      0.150208567676068                          0                 0   0       0
##      0.291704657263826                          0                 0   0       0
##      0.31263158525612                           0                 0   0       0
##      0.313581394222809                          0                 0   0       0
##      0.399450114450523                          0                 0   0       0
##      0.419739887455571                          0                 0   0       0
##      0.425358901761228                          0                 0   0       0
##      0.594035429893685                          0                 0   0       0
##      0.671638488556335                          0                 0   0       0
##      0.688092298985074                          0                 0   0       0
##      0.806600378227794                          0                 0   0       0
##      0.867455094638368                          0                 0   0       0
##      0.897003448844096                          0                 0   0       0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.639583333333333 0.907785087701754 1
##      0.000000000123720820519974                 0                 0 0
##      0.0000000142143709248919                   0                 0 0
##      0.0000000203570784591136                   0                 0 0
##      0.0000000942663046181582                   0                 0 0
##      0.0381424863643358                         0                 0 0
##      0.0395235614826762                         0                 0 0
##      0.0398504564629362                         0                 0 0
##      0.0449831541922517                         0                 0 0
##      0.150208567676068                          0                 0 0
##      0.291704657263826                          0                 0 0
##      0.31263158525612                           0                 0 0
##      0.313581394222809                          0                 0 0
##      0.399450114450523                          0                 0 0
##      0.419739887455571                          0                 0 0
##      0.425358901761228                          0                 0 0
##      0.594035429893685                          0                 0 0
##      0.671638488556335                          0                 0 0
##      0.688092298985074                          0                 0 0
##      0.806600378227794                          0                 0 0
##      0.867455094638368                          0                 0 0
##      0.897003448844096                          0                 0 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 1.34930555555556 4.020833333 6.15
##      0.000000000123720820519974                0           0    0
##      0.0000000142143709248919                  0           0    0
##      0.0000000203570784591136                  0           0    0
##      0.0000000942663046181582                  0           0    0
##      0.0381424863643358                        0           0    0
##      0.0395235614826762                        0           0    0
##      0.0398504564629362                        0           0    0
##      0.0449831541922517                        0           0    0
##      0.150208567676068                         0           0    0
##      0.291704657263826                         0           0    0
##      0.31263158525612                          0           0    0
##      0.313581394222809                         0           0    0
##      0.399450114450523                         0           0    0
##      0.419739887455571                         0           0    0
##      0.425358901761228                         0           0    0
##      0.594035429893685                         0           0    0
##      0.671638488556335                         0           0    0
##      0.688092298985074                         0           0    0
##      0.806600378227794                         0           0    0
##      0.867455094638368                         0           0    0
##      0.897003448844096                         0           0    0
## 
## , , OTT_Time = 0, Snapchat_Time = 0.6208333333, Instagram_Time = 0.190972222222222
## 
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.125 0.142361111111111 0.152777777777778
##      0.000000000123720820519974     0                 0                 0
##      0.0000000142143709248919       0                 0                 0
##      0.0000000203570784591136       0                 0                 0
##      0.0000000942663046181582       0                 0                 0
##      0.0381424863643358             0                 0                 0
##      0.0395235614826762             0                 0                 0
##      0.0398504564629362             0                 0                 0
##      0.0449831541922517             0                 0                 0
##      0.150208567676068              0                 0                 0
##      0.291704657263826              0                 0                 0
##      0.31263158525612               0                 0                 0
##      0.313581394222809              0                 0                 0
##      0.399450114450523              0                 0                 0
##      0.419739887455571              0                 0                 0
##      0.425358901761228              0                 0                 0
##      0.594035429893685              0                 0                 0
##      0.671638488556335              0                 0                 0
##      0.688092298985074              0                 0                 0
##      0.806600378227794              0                 0                 0
##      0.867455094638368              0                 0                 0
##      0.897003448844096              0                 0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.174305555555556 0.208333333333333
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.220833333333333 0.25 0.270833333333333
##      0.000000000123720820519974                 0    0                 0
##      0.0000000142143709248919                   0    0                 0
##      0.0000000203570784591136                   0    0                 0
##      0.0000000942663046181582                   0    0                 0
##      0.0381424863643358                         0    0                 0
##      0.0395235614826762                         0    0                 0
##      0.0398504564629362                         0    0                 0
##      0.0449831541922517                         0    0                 0
##      0.150208567676068                          0    0                 0
##      0.291704657263826                          0    0                 0
##      0.31263158525612                           0    0                 0
##      0.313581394222809                          0    0                 0
##      0.399450114450523                          0    0                 0
##      0.419739887455571                          0    0                 0
##      0.425358901761228                          0    0                 0
##      0.594035429893685                          0    0                 0
##      0.671638488556335                          0    0                 0
##      0.688092298985074                          0    0                 0
##      0.806600378227794                          0    0                 0
##      0.867455094638368                          0    0                 0
##      0.897003448844096                          0    0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.289583333333333 0.371527777777778
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.409722222222222 0.416666666666667 0.5 0.55625
##      0.000000000123720820519974                 0                 0   0       0
##      0.0000000142143709248919                   0                 0   0       0
##      0.0000000203570784591136                   0                 0   0       0
##      0.0000000942663046181582                   0                 0   0       0
##      0.0381424863643358                         0                 0   0       0
##      0.0395235614826762                         0                 0   0       0
##      0.0398504564629362                         0                 0   0       0
##      0.0449831541922517                         0                 0   0       0
##      0.150208567676068                          0                 0   0       0
##      0.291704657263826                          0                 0   0       0
##      0.31263158525612                           0                 0   0       0
##      0.313581394222809                          0                 0   0       0
##      0.399450114450523                          0                 0   0       0
##      0.419739887455571                          0                 0   0       0
##      0.425358901761228                          0                 0   0       0
##      0.594035429893685                          0                 0   0       0
##      0.671638488556335                          0                 0   0       0
##      0.688092298985074                          0                 0   0       0
##      0.806600378227794                          0                 0   0       0
##      0.867455094638368                          0                 0   0       0
##      0.897003448844096                          0                 0   0       0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.639583333333333 0.907785087701754 1
##      0.000000000123720820519974                 0                 0 0
##      0.0000000142143709248919                   0                 0 0
##      0.0000000203570784591136                   0                 0 0
##      0.0000000942663046181582                   0                 0 0
##      0.0381424863643358                         0                 0 0
##      0.0395235614826762                         0                 0 0
##      0.0398504564629362                         0                 0 0
##      0.0449831541922517                         0                 0 0
##      0.150208567676068                          0                 0 0
##      0.291704657263826                          0                 0 0
##      0.31263158525612                           0                 0 0
##      0.313581394222809                          0                 0 0
##      0.399450114450523                          0                 0 0
##      0.419739887455571                          0                 0 0
##      0.425358901761228                          0                 0 0
##      0.594035429893685                          0                 0 0
##      0.671638488556335                          0                 0 0
##      0.688092298985074                          0                 0 0
##      0.806600378227794                          0                 0 0
##      0.867455094638368                          0                 0 0
##      0.897003448844096                          0                 0 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 1.34930555555556 4.020833333 6.15
##      0.000000000123720820519974                0           0    0
##      0.0000000142143709248919                  0           0    0
##      0.0000000203570784591136                  0           0    0
##      0.0000000942663046181582                  0           0    0
##      0.0381424863643358                        0           0    0
##      0.0395235614826762                        0           0    0
##      0.0398504564629362                        0           0    0
##      0.0449831541922517                        0           0    0
##      0.150208567676068                         0           0    0
##      0.291704657263826                         0           0    0
##      0.31263158525612                          0           0    0
##      0.313581394222809                         0           0    0
##      0.399450114450523                         0           0    0
##      0.419739887455571                         0           0    0
##      0.425358901761228                         0           0    0
##      0.594035429893685                         0           0    0
##      0.671638488556335                         0           0    0
##      0.688092298985074                         0           0    0
##      0.806600378227794                         0           0    0
##      0.867455094638368                         0           0    0
##      0.897003448844096                         0           0    0
## 
## , , OTT_Time = 0.102777777777778, Snapchat_Time = 0.6208333333, Instagram_Time = 0.190972222222222
## 
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.125 0.142361111111111 0.152777777777778
##      0.000000000123720820519974     0                 0                 0
##      0.0000000142143709248919       0                 0                 0
##      0.0000000203570784591136       0                 0                 0
##      0.0000000942663046181582       0                 0                 0
##      0.0381424863643358             0                 0                 0
##      0.0395235614826762             0                 0                 0
##      0.0398504564629362             0                 0                 0
##      0.0449831541922517             0                 0                 0
##      0.150208567676068              0                 0                 0
##      0.291704657263826              0                 0                 0
##      0.31263158525612               0                 0                 0
##      0.313581394222809              0                 0                 0
##      0.399450114450523              0                 0                 0
##      0.419739887455571              0                 0                 0
##      0.425358901761228              0                 0                 0
##      0.594035429893685              0                 0                 0
##      0.671638488556335              0                 0                 0
##      0.688092298985074              0                 0                 0
##      0.806600378227794              0                 0                 0
##      0.867455094638368              0                 0                 0
##      0.897003448844096              0                 0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.174305555555556 0.208333333333333
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.220833333333333 0.25 0.270833333333333
##      0.000000000123720820519974                 0    0                 0
##      0.0000000142143709248919                   0    0                 0
##      0.0000000203570784591136                   0    0                 0
##      0.0000000942663046181582                   0    0                 0
##      0.0381424863643358                         0    0                 0
##      0.0395235614826762                         0    0                 0
##      0.0398504564629362                         0    0                 0
##      0.0449831541922517                         0    0                 0
##      0.150208567676068                          0    0                 0
##      0.291704657263826                          0    0                 0
##      0.31263158525612                           0    0                 0
##      0.313581394222809                          0    0                 0
##      0.399450114450523                          0    0                 0
##      0.419739887455571                          0    0                 0
##      0.425358901761228                          0    0                 0
##      0.594035429893685                          0    0                 0
##      0.671638488556335                          0    0                 0
##      0.688092298985074                          0    0                 0
##      0.806600378227794                          0    0                 0
##      0.867455094638368                          0    0                 0
##      0.897003448844096                          0    0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.289583333333333 0.371527777777778
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.409722222222222 0.416666666666667 0.5 0.55625
##      0.000000000123720820519974                 0                 0   0       0
##      0.0000000142143709248919                   0                 0   0       0
##      0.0000000203570784591136                   0                 0   0       0
##      0.0000000942663046181582                   0                 0   0       0
##      0.0381424863643358                         0                 0   0       0
##      0.0395235614826762                         0                 0   0       0
##      0.0398504564629362                         0                 0   0       0
##      0.0449831541922517                         0                 0   0       0
##      0.150208567676068                          0                 0   0       0
##      0.291704657263826                          0                 0   0       0
##      0.31263158525612                           0                 0   0       0
##      0.313581394222809                          0                 0   0       0
##      0.399450114450523                          0                 0   0       0
##      0.419739887455571                          0                 0   0       0
##      0.425358901761228                          0                 0   0       0
##      0.594035429893685                          0                 0   0       0
##      0.671638488556335                          0                 0   0       0
##      0.688092298985074                          0                 0   0       0
##      0.806600378227794                          0                 0   0       0
##      0.867455094638368                          0                 0   0       0
##      0.897003448844096                          0                 0   0       0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.639583333333333 0.907785087701754 1
##      0.000000000123720820519974                 0                 0 0
##      0.0000000142143709248919                   0                 0 0
##      0.0000000203570784591136                   0                 0 0
##      0.0000000942663046181582                   0                 0 0
##      0.0381424863643358                         0                 0 0
##      0.0395235614826762                         0                 0 0
##      0.0398504564629362                         0                 0 0
##      0.0449831541922517                         0                 0 0
##      0.150208567676068                          0                 0 0
##      0.291704657263826                          0                 0 0
##      0.31263158525612                           0                 0 0
##      0.313581394222809                          0                 0 0
##      0.399450114450523                          0                 0 0
##      0.419739887455571                          0                 0 0
##      0.425358901761228                          0                 0 0
##      0.594035429893685                          0                 0 0
##      0.671638488556335                          0                 0 0
##      0.688092298985074                          0                 0 0
##      0.806600378227794                          0                 0 0
##      0.867455094638368                          0                 0 0
##      0.897003448844096                          0                 0 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 1.34930555555556 4.020833333 6.15
##      0.000000000123720820519974                0           0    0
##      0.0000000142143709248919                  0           0    0
##      0.0000000203570784591136                  0           0    0
##      0.0000000942663046181582                  0           0    0
##      0.0381424863643358                        0           0    0
##      0.0395235614826762                        0           0    0
##      0.0398504564629362                        0           0    0
##      0.0449831541922517                        0           0    0
##      0.150208567676068                         0           0    0
##      0.291704657263826                         0           0    0
##      0.31263158525612                          0           0    0
##      0.313581394222809                         0           0    0
##      0.399450114450523                         0           0    0
##      0.419739887455571                         0           0    0
##      0.425358901761228                         0           0    0
##      0.594035429893685                         0           0    0
##      0.671638488556335                         0           0    0
##      0.688092298985074                         0           0    0
##      0.806600378227794                         0           0    0
##      0.867455094638368                         0           0    0
##      0.897003448844096                         0           0    0
## 
## , , OTT_Time = 0.125, Snapchat_Time = 0.6208333333, Instagram_Time = 0.190972222222222
## 
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.125 0.142361111111111 0.152777777777778
##      0.000000000123720820519974     0                 0                 0
##      0.0000000142143709248919       0                 0                 0
##      0.0000000203570784591136       0                 0                 0
##      0.0000000942663046181582       0                 0                 0
##      0.0381424863643358             0                 0                 0
##      0.0395235614826762             0                 0                 0
##      0.0398504564629362             0                 0                 0
##      0.0449831541922517             0                 0                 0
##      0.150208567676068              0                 0                 0
##      0.291704657263826              0                 0                 0
##      0.31263158525612               0                 0                 0
##      0.313581394222809              0                 0                 0
##      0.399450114450523              0                 0                 0
##      0.419739887455571              0                 0                 0
##      0.425358901761228              0                 0                 0
##      0.594035429893685              0                 0                 0
##      0.671638488556335              0                 0                 0
##      0.688092298985074              0                 0                 0
##      0.806600378227794              0                 0                 0
##      0.867455094638368              0                 0                 0
##      0.897003448844096              0                 0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.174305555555556 0.208333333333333
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.220833333333333 0.25 0.270833333333333
##      0.000000000123720820519974                 0    0                 0
##      0.0000000142143709248919                   0    0                 0
##      0.0000000203570784591136                   0    0                 0
##      0.0000000942663046181582                   0    0                 0
##      0.0381424863643358                         0    0                 0
##      0.0395235614826762                         0    0                 0
##      0.0398504564629362                         0    0                 0
##      0.0449831541922517                         0    0                 0
##      0.150208567676068                          0    0                 0
##      0.291704657263826                          0    0                 0
##      0.31263158525612                           0    0                 0
##      0.313581394222809                          0    0                 0
##      0.399450114450523                          0    0                 0
##      0.419739887455571                          0    0                 0
##      0.425358901761228                          0    0                 0
##      0.594035429893685                          0    0                 0
##      0.671638488556335                          0    0                 0
##      0.688092298985074                          0    0                 0
##      0.806600378227794                          0    0                 0
##      0.867455094638368                          0    0                 0
##      0.897003448844096                          0    0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.289583333333333 0.371527777777778
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.409722222222222 0.416666666666667 0.5 0.55625
##      0.000000000123720820519974                 0                 0   0       0
##      0.0000000142143709248919                   0                 0   0       0
##      0.0000000203570784591136                   0                 0   0       0
##      0.0000000942663046181582                   0                 0   0       0
##      0.0381424863643358                         0                 0   0       0
##      0.0395235614826762                         0                 0   0       0
##      0.0398504564629362                         0                 0   0       0
##      0.0449831541922517                         0                 0   0       0
##      0.150208567676068                          0                 0   0       0
##      0.291704657263826                          0                 0   0       0
##      0.31263158525612                           0                 0   0       0
##      0.313581394222809                          0                 0   0       0
##      0.399450114450523                          0                 0   0       0
##      0.419739887455571                          0                 0   0       0
##      0.425358901761228                          0                 0   0       0
##      0.594035429893685                          0                 0   0       0
##      0.671638488556335                          0                 0   0       0
##      0.688092298985074                          0                 0   0       0
##      0.806600378227794                          0                 0   0       0
##      0.867455094638368                          0                 0   0       0
##      0.897003448844096                          0                 0   0       0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.639583333333333 0.907785087701754 1
##      0.000000000123720820519974                 0                 0 0
##      0.0000000142143709248919                   0                 0 0
##      0.0000000203570784591136                   0                 0 0
##      0.0000000942663046181582                   0                 0 0
##      0.0381424863643358                         0                 0 0
##      0.0395235614826762                         0                 0 0
##      0.0398504564629362                         0                 0 0
##      0.0449831541922517                         0                 0 0
##      0.150208567676068                          0                 0 0
##      0.291704657263826                          0                 0 0
##      0.31263158525612                           0                 0 0
##      0.313581394222809                          0                 0 0
##      0.399450114450523                          0                 0 0
##      0.419739887455571                          0                 0 0
##      0.425358901761228                          0                 0 0
##      0.594035429893685                          0                 0 0
##      0.671638488556335                          0                 0 0
##      0.688092298985074                          0                 0 0
##      0.806600378227794                          0                 0 0
##      0.867455094638368                          0                 0 0
##      0.897003448844096                          0                 0 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 1.34930555555556 4.020833333 6.15
##      0.000000000123720820519974                0           0    0
##      0.0000000142143709248919                  0           0    0
##      0.0000000203570784591136                  0           0    0
##      0.0000000942663046181582                  0           0    0
##      0.0381424863643358                        0           0    0
##      0.0395235614826762                        0           0    0
##      0.0398504564629362                        0           0    0
##      0.0449831541922517                        0           0    0
##      0.150208567676068                         0           0    0
##      0.291704657263826                         0           0    0
##      0.31263158525612                          0           0    0
##      0.313581394222809                         0           0    0
##      0.399450114450523                         0           0    0
##      0.419739887455571                         0           0    0
##      0.425358901761228                         0           0    0
##      0.594035429893685                         0           0    0
##      0.671638488556335                         0           0    0
##      0.688092298985074                         0           0    0
##      0.806600378227794                         0           0    0
##      0.867455094638368                         0           0    0
##      0.897003448844096                         0           0    0
## 
## , , OTT_Time = 0.416666666666667, Snapchat_Time = 0.6208333333, Instagram_Time = 0.190972222222222
## 
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.125 0.142361111111111 0.152777777777778
##      0.000000000123720820519974     0                 0                 0
##      0.0000000142143709248919       0                 0                 0
##      0.0000000203570784591136       0                 0                 0
##      0.0000000942663046181582       0                 0                 0
##      0.0381424863643358             0                 0                 0
##      0.0395235614826762             0                 0                 0
##      0.0398504564629362             0                 0                 0
##      0.0449831541922517             0                 0                 0
##      0.150208567676068              0                 0                 0
##      0.291704657263826              0                 0                 0
##      0.31263158525612               0                 0                 0
##      0.313581394222809              0                 0                 0
##      0.399450114450523              0                 0                 0
##      0.419739887455571              0                 0                 0
##      0.425358901761228              0                 0                 0
##      0.594035429893685              0                 0                 0
##      0.671638488556335              0                 0                 0
##      0.688092298985074              0                 0                 0
##      0.806600378227794              0                 0                 0
##      0.867455094638368              0                 0                 0
##      0.897003448844096              0                 0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.174305555555556 0.208333333333333
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.220833333333333 0.25 0.270833333333333
##      0.000000000123720820519974                 0    0                 0
##      0.0000000142143709248919                   0    0                 0
##      0.0000000203570784591136                   0    0                 0
##      0.0000000942663046181582                   0    0                 0
##      0.0381424863643358                         0    0                 0
##      0.0395235614826762                         0    0                 0
##      0.0398504564629362                         0    0                 0
##      0.0449831541922517                         0    0                 0
##      0.150208567676068                          0    0                 0
##      0.291704657263826                          0    0                 0
##      0.31263158525612                           0    0                 0
##      0.313581394222809                          0    0                 0
##      0.399450114450523                          0    0                 0
##      0.419739887455571                          0    0                 0
##      0.425358901761228                          0    0                 0
##      0.594035429893685                          0    0                 0
##      0.671638488556335                          0    0                 0
##      0.688092298985074                          0    0                 0
##      0.806600378227794                          0    0                 0
##      0.867455094638368                          0    0                 0
##      0.897003448844096                          0    0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.289583333333333 0.371527777777778
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.409722222222222 0.416666666666667 0.5 0.55625
##      0.000000000123720820519974                 0                 0   0       0
##      0.0000000142143709248919                   0                 0   0       0
##      0.0000000203570784591136                   0                 0   0       0
##      0.0000000942663046181582                   0                 0   0       0
##      0.0381424863643358                         0                 0   0       0
##      0.0395235614826762                         0                 0   0       0
##      0.0398504564629362                         0                 0   0       0
##      0.0449831541922517                         0                 0   0       0
##      0.150208567676068                          0                 0   0       0
##      0.291704657263826                          0                 0   0       0
##      0.31263158525612                           0                 0   0       0
##      0.313581394222809                          0                 0   0       0
##      0.399450114450523                          0                 0   0       0
##      0.419739887455571                          0                 0   0       0
##      0.425358901761228                          0                 0   0       0
##      0.594035429893685                          0                 0   0       0
##      0.671638488556335                          0                 0   0       0
##      0.688092298985074                          0                 0   0       0
##      0.806600378227794                          0                 0   0       0
##      0.867455094638368                          0                 0   0       0
##      0.897003448844096                          0                 0   0       0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.639583333333333 0.907785087701754 1
##      0.000000000123720820519974                 0                 0 0
##      0.0000000142143709248919                   0                 0 0
##      0.0000000203570784591136                   0                 0 0
##      0.0000000942663046181582                   0                 0 0
##      0.0381424863643358                         0                 0 0
##      0.0395235614826762                         0                 0 0
##      0.0398504564629362                         0                 0 0
##      0.0449831541922517                         0                 0 0
##      0.150208567676068                          0                 0 0
##      0.291704657263826                          0                 0 0
##      0.31263158525612                           0                 0 0
##      0.313581394222809                          0                 0 0
##      0.399450114450523                          0                 0 0
##      0.419739887455571                          0                 0 0
##      0.425358901761228                          0                 0 0
##      0.594035429893685                          0                 0 0
##      0.671638488556335                          0                 0 0
##      0.688092298985074                          0                 0 0
##      0.806600378227794                          0                 0 0
##      0.867455094638368                          0                 0 0
##      0.897003448844096                          0                 0 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 1.34930555555556 4.020833333 6.15
##      0.000000000123720820519974                0           0    0
##      0.0000000142143709248919                  0           0    0
##      0.0000000203570784591136                  0           0    0
##      0.0000000942663046181582                  0           0    0
##      0.0381424863643358                        0           0    0
##      0.0395235614826762                        0           0    0
##      0.0398504564629362                        0           0    0
##      0.0449831541922517                        0           0    0
##      0.150208567676068                         0           0    0
##      0.291704657263826                         0           0    0
##      0.31263158525612                          0           0    0
##      0.313581394222809                         0           0    0
##      0.399450114450523                         0           0    0
##      0.419739887455571                         0           0    0
##      0.425358901761228                         0           0    0
##      0.594035429893685                         0           0    0
##      0.671638488556335                         0           0    0
##      0.688092298985074                         0           0    0
##      0.806600378227794                         0           0    0
##      0.867455094638368                         0           0    0
##      0.897003448844096                         0           0    0
## 
## , , OTT_Time = 0.5104166667, Snapchat_Time = 0.6208333333, Instagram_Time = 0.190972222222222
## 
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.125 0.142361111111111 0.152777777777778
##      0.000000000123720820519974     0                 0                 0
##      0.0000000142143709248919       0                 0                 0
##      0.0000000203570784591136       0                 0                 0
##      0.0000000942663046181582       0                 0                 0
##      0.0381424863643358             0                 0                 0
##      0.0395235614826762             0                 0                 0
##      0.0398504564629362             0                 0                 0
##      0.0449831541922517             0                 0                 0
##      0.150208567676068              0                 0                 0
##      0.291704657263826              0                 0                 0
##      0.31263158525612               0                 0                 0
##      0.313581394222809              0                 0                 0
##      0.399450114450523              0                 0                 0
##      0.419739887455571              0                 0                 0
##      0.425358901761228              0                 0                 0
##      0.594035429893685              0                 0                 0
##      0.671638488556335              0                 0                 0
##      0.688092298985074              0                 0                 0
##      0.806600378227794              0                 0                 0
##      0.867455094638368              0                 0                 0
##      0.897003448844096              0                 0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.174305555555556 0.208333333333333
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.220833333333333 0.25 0.270833333333333
##      0.000000000123720820519974                 0    0                 0
##      0.0000000142143709248919                   0    0                 0
##      0.0000000203570784591136                   0    0                 0
##      0.0000000942663046181582                   0    0                 0
##      0.0381424863643358                         0    0                 0
##      0.0395235614826762                         0    0                 0
##      0.0398504564629362                         0    0                 0
##      0.0449831541922517                         0    0                 0
##      0.150208567676068                          0    0                 0
##      0.291704657263826                          0    0                 0
##      0.31263158525612                           0    0                 0
##      0.313581394222809                          0    0                 0
##      0.399450114450523                          0    0                 0
##      0.419739887455571                          0    0                 0
##      0.425358901761228                          0    0                 0
##      0.594035429893685                          0    0                 0
##      0.671638488556335                          0    0                 0
##      0.688092298985074                          0    0                 0
##      0.806600378227794                          0    0                 0
##      0.867455094638368                          0    0                 0
##      0.897003448844096                          0    0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.289583333333333 0.371527777777778
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.409722222222222 0.416666666666667 0.5 0.55625
##      0.000000000123720820519974                 0                 0   0       0
##      0.0000000142143709248919                   0                 0   0       0
##      0.0000000203570784591136                   0                 0   0       0
##      0.0000000942663046181582                   0                 0   0       0
##      0.0381424863643358                         0                 0   0       0
##      0.0395235614826762                         0                 0   0       0
##      0.0398504564629362                         0                 0   0       0
##      0.0449831541922517                         0                 0   0       0
##      0.150208567676068                          0                 0   0       0
##      0.291704657263826                          0                 0   0       0
##      0.31263158525612                           0                 0   0       0
##      0.313581394222809                          0                 0   0       0
##      0.399450114450523                          0                 0   0       0
##      0.419739887455571                          0                 0   0       0
##      0.425358901761228                          0                 0   0       0
##      0.594035429893685                          0                 0   0       0
##      0.671638488556335                          0                 0   0       0
##      0.688092298985074                          0                 0   0       0
##      0.806600378227794                          0                 0   0       0
##      0.867455094638368                          0                 0   0       0
##      0.897003448844096                          0                 0   0       0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.639583333333333 0.907785087701754 1
##      0.000000000123720820519974                 0                 0 0
##      0.0000000142143709248919                   0                 0 0
##      0.0000000203570784591136                   0                 0 0
##      0.0000000942663046181582                   0                 0 0
##      0.0381424863643358                         0                 0 0
##      0.0395235614826762                         0                 0 0
##      0.0398504564629362                         0                 0 0
##      0.0449831541922517                         0                 0 0
##      0.150208567676068                          0                 0 0
##      0.291704657263826                          0                 0 0
##      0.31263158525612                           0                 0 0
##      0.313581394222809                          0                 0 0
##      0.399450114450523                          0                 0 0
##      0.419739887455571                          0                 0 0
##      0.425358901761228                          0                 0 0
##      0.594035429893685                          0                 0 0
##      0.671638488556335                          0                 0 0
##      0.688092298985074                          0                 0 0
##      0.806600378227794                          0                 0 0
##      0.867455094638368                          0                 0 0
##      0.897003448844096                          0                 0 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 1.34930555555556 4.020833333 6.15
##      0.000000000123720820519974                0           0    0
##      0.0000000142143709248919                  0           0    0
##      0.0000000203570784591136                  0           0    0
##      0.0000000942663046181582                  0           0    0
##      0.0381424863643358                        0           0    0
##      0.0395235614826762                        0           0    0
##      0.0398504564629362                        0           0    0
##      0.0449831541922517                        0           0    0
##      0.150208567676068                         0           0    0
##      0.291704657263826                         0           0    0
##      0.31263158525612                          0           0    0
##      0.313581394222809                         0           0    0
##      0.399450114450523                         0           0    0
##      0.419739887455571                         0           0    0
##      0.425358901761228                         0           0    0
##      0.594035429893685                         0           0    0
##      0.671638488556335                         0           0    0
##      0.688092298985074                         0           0    0
##      0.806600378227794                         0           0    0
##      0.867455094638368                         0           0    0
##      0.897003448844096                         0           0    0
## 
## , , OTT_Time = 1.44460470085726, Snapchat_Time = 0.6208333333, Instagram_Time = 0.190972222222222
## 
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.125 0.142361111111111 0.152777777777778
##      0.000000000123720820519974     0                 0                 0
##      0.0000000142143709248919       0                 0                 0
##      0.0000000203570784591136       0                 0                 0
##      0.0000000942663046181582       0                 0                 0
##      0.0381424863643358             0                 0                 0
##      0.0395235614826762             0                 0                 0
##      0.0398504564629362             0                 0                 0
##      0.0449831541922517             0                 0                 0
##      0.150208567676068              0                 0                 0
##      0.291704657263826              0                 0                 0
##      0.31263158525612               0                 0                 0
##      0.313581394222809              0                 0                 0
##      0.399450114450523              0                 0                 0
##      0.419739887455571              0                 0                 0
##      0.425358901761228              0                 0                 0
##      0.594035429893685              0                 0                 0
##      0.671638488556335              0                 0                 0
##      0.688092298985074              0                 0                 0
##      0.806600378227794              0                 0                 0
##      0.867455094638368              0                 0                 0
##      0.897003448844096              0                 0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.174305555555556 0.208333333333333
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.220833333333333 0.25 0.270833333333333
##      0.000000000123720820519974                 0    0                 0
##      0.0000000142143709248919                   0    0                 0
##      0.0000000203570784591136                   0    0                 0
##      0.0000000942663046181582                   0    0                 0
##      0.0381424863643358                         0    0                 0
##      0.0395235614826762                         0    0                 0
##      0.0398504564629362                         0    0                 0
##      0.0449831541922517                         0    0                 0
##      0.150208567676068                          0    0                 0
##      0.291704657263826                          0    0                 0
##      0.31263158525612                           0    0                 0
##      0.313581394222809                          0    0                 0
##      0.399450114450523                          0    0                 0
##      0.419739887455571                          0    0                 0
##      0.425358901761228                          0    0                 0
##      0.594035429893685                          0    0                 0
##      0.671638488556335                          0    0                 0
##      0.688092298985074                          0    0                 0
##      0.806600378227794                          0    0                 0
##      0.867455094638368                          0    0                 0
##      0.897003448844096                          0    0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.289583333333333 0.371527777777778
##      0.000000000123720820519974                 0                 0
##      0.0000000142143709248919                   0                 0
##      0.0000000203570784591136                   0                 0
##      0.0000000942663046181582                   0                 0
##      0.0381424863643358                         0                 0
##      0.0395235614826762                         0                 0
##      0.0398504564629362                         0                 0
##      0.0449831541922517                         0                 0
##      0.150208567676068                          0                 0
##      0.291704657263826                          0                 0
##      0.31263158525612                           0                 0
##      0.313581394222809                          0                 0
##      0.399450114450523                          0                 0
##      0.419739887455571                          0                 0
##      0.425358901761228                          0                 0
##      0.594035429893685                          0                 0
##      0.671638488556335                          0                 0
##      0.688092298985074                          0                 0
##      0.806600378227794                          0                 0
##      0.867455094638368                          0                 0
##      0.897003448844096                          0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.409722222222222 0.416666666666667 0.5 0.55625
##      0.000000000123720820519974                 0                 0   0       0
##      0.0000000142143709248919                   0                 0   0       0
##      0.0000000203570784591136                   0                 0   0       0
##      0.0000000942663046181582                   0                 0   0       0
##      0.0381424863643358                         0                 0   0       0
##      0.0395235614826762                         0                 0   0       0
##      0.0398504564629362                         0                 0   0       0
##      0.0449831541922517                         0                 0   0       0
##      0.150208567676068                          0                 0   0       0
##      0.291704657263826                          0                 0   0       0
##      0.31263158525612                           0                 0   0       0
##      0.313581394222809                          0                 0   0       0
##      0.399450114450523                          0                 0   0       0
##      0.419739887455571                          0                 0   0       0
##      0.425358901761228                          0                 0   0       0
##      0.594035429893685                          0                 0   0       0
##      0.671638488556335                          0                 0   0       0
##      0.688092298985074                          0                 0   0       0
##      0.806600378227794                          0                 0   0       0
##      0.867455094638368                          0                 0   0       0
##      0.897003448844096                          0                 0   0       0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.639583333333333 0.907785087701754 1
##      0.000000000123720820519974                 0                 0 0
##      0.0000000142143709248919                   0                 0 0
##      0.0000000203570784591136                   0                 0 0
##      0.0000000942663046181582                   0                 0 0
##      0.0381424863643358                         0                 0 0
##      0.0395235614826762                         0                 0 0
##      0.0398504564629362                         0                 0 0
##      0.0449831541922517                         0                 0 0
##      0.150208567676068                          0                 0 0
##      0.291704657263826                          0                 0 0
##      0.31263158525612                           0                 0 0
##      0.313581394222809                          0                 0 0
##      0.399450114450523                          0                 0 0
##      0.419739887455571                          0                 0 0
##      0.425358901761228                          0                 0 0
##      0.594035429893685                          0                 0 0
##      0.671638488556335                          0                 0 0
##      0.688092298985074                          0                 0 0
##      0.806600378227794                          0                 0 0
##      0.867455094638368                          0                 0 0
##      0.897003448844096                          0                 0 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 1.34930555555556 4.020833333 6.15
##      0.000000000123720820519974                0           0    0
##      0.0000000142143709248919                  0           0    0
##      0.0000000203570784591136                  0           0    0
##      0.0000000942663046181582                  0           0    0
##      0.0381424863643358                        0           0    0
##      0.0395235614826762                        0           0    0
##      0.0398504564629362                        0           0    0
##      0.0449831541922517                        0           0    0
##      0.150208567676068                         0           0    0
##      0.291704657263826                         0           0    0
##      0.31263158525612                          0           0    0
##      0.313581394222809                         0           0    0
##      0.399450114450523                         0           0    0
##      0.419739887455571                         0           0    0
##      0.425358901761228                         0           0    0
##      0.594035429893685                         0           0    0
##      0.671638488556335                         0           0    0
##      0.688092298985074                         0           0    0
##      0.806600378227794                         0           0    0
##      0.867455094638368                         0           0    0
##      0.897003448844096                         0           0    0
## 
## , , OTT_Time = 3, Snapchat_Time = 0.6208333333, Instagram_Time = 0.190972222222222
## 
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.125 0.142361111111111 0.152777777777778
##      0.000000000123720820519974     0                 0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.174305555555556 0.208333333333333
##      0.000000000123720820519974                 0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.220833333333333 0.25 0.270833333333333
##      0.000000000123720820519974                 0    0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.289583333333333 0.371527777777778
##      0.000000000123720820519974                 0                 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.409722222222222 0.416666666666667 0.5 0.55625
##      0.000000000123720820519974                 0                 0   0       0
##                                Whatsapp_Time
## probability.of.Morning_tireness 0.639583333333333 0.907785087701754 1
##      0.000000000123720820519974                 0                 0 0
##                                Whatsapp_Time
## probability.of.Morning_tireness 1.34930555555556 4.020833333 6.15
##      0.000000000123720820519974                0           0    0
## 
##  [ reached getOption("max.print") -- omitted 20 row(s) and 913 matrix slice(s) ]
logistic <- glm(Morning_tireness ~ ., data=social_media_subset_encoded, family="binomial")
## Warning: glm.fit: algorithm did not converge
## Warning: glm.fit: fitted probabilities numerically 0 or 1 occurred
summary(logistic)
## 
## Call:
## glm(formula = Morning_tireness ~ ., family = "binomial", data = social_media_subset_encoded)
## 
## Coefficients: (1 not defined because of singularities)
##                                            Estimate  Std. Error z value
## (Intercept)                                  -21.01   118353.40       0
## Instagram_Time                                17.87   802935.01       0
## Linkedin_Time                                122.30   425068.88       0
## Snapchat_Time                                135.01  1254121.12       0
## Twitter_Time                                -282.85  8496271.78       0
## Whatsapp_Time                                -77.36   706625.65       0
## Youtube_Time                                -231.54  1050738.12       0
## OTT_Time                                    -116.36  1453535.99       0
## Reddit_Time                                 1169.60 11386188.40       0
## `\\`Application Type\\`Learning`              16.45  1541162.93       0
## `\\`Application Type\\`Netflix`             -217.92  1781265.13       0
## `\\`Application Type\\`No Social Media`       50.54   284084.94       0
## `\\`Application Type\\`OTT`                  141.06 48026990.04       0
## `\\`Application Type\\`Social media`         180.29   503531.58       0
## `\\`Application Type\\`Social Media`             NA          NA      NA
##                                         Pr(>|z|)
## (Intercept)                                    1
## Instagram_Time                                 1
## Linkedin_Time                                  1
## Snapchat_Time                                  1
## Twitter_Time                                   1
## Whatsapp_Time                                  1
## Youtube_Time                                   1
## OTT_Time                                       1
## Reddit_Time                                    1
## `\\`Application Type\\`Learning`               1
## `\\`Application Type\\`Netflix`                1
## `\\`Application Type\\`No Social Media`        1
## `\\`Application Type\\`OTT`                    1
## `\\`Application Type\\`Social media`           1
## `\\`Application Type\\`Social Media`          NA
## 
## (Dispersion parameter for binomial family taken to be 1)
## 
##     Null deviance: 26.73359506838214  on 20  degrees of freedom
## Residual deviance:  0.00000000086725  on  7  degrees of freedom
## AIC: 28
## 
## Number of Fisher Scoring iterations: 25
## Now calculate the overall "Pseudo R-squared" and its p-value
ll.null <- logistic$null.deviance/-2
ll.proposed <- logistic$deviance/-2
(ll.null - ll.proposed) / ll.null
## [1] 1
## The p-value for the R^2
1 - pchisq(2*(ll.proposed - ll.null), df=(length(logistic$coefficients)-1))
## [1] 0.02084705
predicted.data$Morning_tireness <- data.frame(probability.of.Morning_tireness=logistic$fitted.values,Morning_tireness=social_media_subset_encoded$Morning_tireness)
  1. Prediction (2 points)
predicted.data <- predicted.data[order(predicted.data$probability.of.Morning_tireness, decreasing=FALSE),]
predicted.data$rank <- 1:nrow(predicted.data)
  1. Prediction (2 points) Prediction Results (pdata): The pdata vector contains the predicted probabilities of having sleep issues (morning tiredness) for each observation in the dataset. These probabilities range from very low (close to 0) to very high (close to 1).

Actual Values of Morning Tiredness (social_media_subset_encoded\(Morning_tireness): The social_media_subset_encoded\)Morning_tireness vector contains the actual values of morning tiredness for each observation, categorized as “No” or “Yes”.

Inferences: By comparing the predicted probabilities (pdata) with the actual values of morning tiredness, we can assess the model’s performance in predicting sleep issues.

Observations with high predicted probabilities (close to 1) are likely to be classified as “Yes” (having morning tiredness), while those with low predicted probabilities (close to 0) are likely to be classified as “No” (not having morning tiredness).

We can visualize the relationship between the predicted probabilities and the actual values using a plot. In the provided ggplot code, the geom_point function is used to create a scatter plot where the x-axis represents the index of observations, the y-axis represents the predicted probabilities of having sleep issues, and the color of points represents the actual values of morning tiredness.

Interpretation: Points with a high predicted probability and actual value “Yes” (morning tiredness) indicate successful predictions. Points with a high predicted probability but actual value “No” suggest false positives (misclassifications).

Points with a low predicted probability and actual value “Yes” suggest false negatives (misclassifications).

The overall performance of the model can be evaluated based on the distribution and alignment of points in the plot.

ggplot(data=predicted.data, aes(x=rank, y=probability.of.Morning_tireness)) +
geom_point(aes(color=social_media_subset_encoded$Morning_tireness), alpha=1, shape=4, stroke=2) +
xlab("Index") +
ylab("Predicted probability of having sleep issues")

# From Caret
pdata <- predict(logistic,newdata=social_media_subset_encoded,type="response" )
## Warning in predict.lm(object, newdata, se.fit, scale = 1, type = if (type == :
## prediction from rank-deficient fit; attr(*, "non-estim") has doubtful cases
pdata
##                        1                        2                        3 
## 0.0000000000022782809101 0.0000000001658377330529 0.0000000000000002220446 
##                        4                        5                        6 
## 0.0000000000000002220446 0.9999999999999997779554 0.0000000000106442707438 
##                        7                        8                        9 
## 0.9999999999999997779554 0.9999999999716544518691 0.0000000000141664350415 
##                       10                       11                       12 
## 0.0000000000000002220446 0.0000000000029007014655 0.0000000000000002220446 
##                       13                       14                       15 
## 0.9999999999997553068454 0.0000000000000002220446 0.0000000000029007014655 
##                       16                       17                       18 
## 0.9999999999970893282963 0.0000000000207133550446 0.9999999998950785951024 
##                       19                       20                       21 
## 0.0000000000184262729339 0.0000000000000002220446 0.9999999999406664619173 
## attr(,"non-estim")
##  2  3  4  5  6  7  8  9 10 12 13 14 16 17 18 20 21 
##  2  3  4  5  6  7  8  9 10 12 13 14 16 17 18 20 21
social_media_subset_encoded$Morning_tireness
##  [1] No  No  No  No  Yes No  Yes Yes No  No  No  No  Yes No  No  Yes No  Yes No 
## [20] No  Yes
## Levels: No Yes
# Install and load the caret package

library(caret)
library(pROC)
## Warning: package 'pROC' was built under R version 4.3.2
## Type 'citation("pROC")' for a citation.
## 
## Attaching package: 'pROC'
## The following objects are masked from 'package:stats':
## 
##     cov, smooth, var
pdataF <- as.factor(ifelse(test=as.numeric(pdata>0.5) == 0, yes="Yes", no="No"))

#From e1071::
confusionMatrix(pdataF, social_media_subset_encoded$Morning_tireness)
## Confusion Matrix and Statistics
## 
##           Reference
## Prediction No Yes
##        No   0   7
##        Yes 14   0
##                                      
##                Accuracy : 0          
##                  95% CI : (0, 0.1611)
##     No Information Rate : 0.6667     
##     P-Value [Acc > NIR] : 1.0000     
##                                      
##                   Kappa : -0.8       
##                                      
##  Mcnemar's Test P-Value : 0.1904     
##                                      
##             Sensitivity : 0.0000     
##             Specificity : 0.0000     
##          Pos Pred Value : 0.0000     
##          Neg Pred Value : 0.0000     
##              Prevalence : 0.6667     
##          Detection Rate : 0.0000     
##    Detection Prevalence : 0.3333     
##       Balanced Accuracy : 0.0000     
##                                      
##        'Positive' Class : No         
## 
# From pROC
roc(social_media_subset_encoded$Morning_tireness,logistic$fitted.values,plot=TRUE)
## Setting levels: control = No, case = Yes
## Setting direction: controls < cases
## 
## Call:
## roc.default(response = social_media_subset_encoded$Morning_tireness,     predictor = logistic$fitted.values, plot = TRUE)
## 
## Data: logistic$fitted.values in 14 controls (social_media_subset_encoded$Morning_tireness No) < 7 cases (social_media_subset_encoded$Morning_tireness Yes).
## Area under the curve: 1
par(pty = "s")
roc(social_media_subset_encoded$Morning_tireness,logistic$fitted.values,plot=TRUE)
## Setting levels: control = No, case = Yes
## Setting direction: controls < cases

## 
## Call:
## roc.default(response = social_media_subset_encoded$Morning_tireness,     predictor = logistic$fitted.values, plot = TRUE)
## 
## Data: logistic$fitted.values in 14 controls (social_media_subset_encoded$Morning_tireness No) < 7 cases (social_media_subset_encoded$Morning_tireness Yes).
## Area under the curve: 1
## NOTE: By default, roc() uses specificity on the x-axis and the values range
## from 1 to 0. This makes the graph look like what we would expect, but the
## x-axis itself might induce a headache. To use 1-specificity (i.e. the
## False Positive Rate) on the x-axis, set "legacy.axes" to TRUE.
roc(social_media_subset_encoded$Morning_tireness,logistic$fitted.values,plot=TRUE, legacy.axes=TRUE)
## Setting levels: control = No, case = Yes
## Setting direction: controls < cases

## 
## Call:
## roc.default(response = social_media_subset_encoded$Morning_tireness,     predictor = logistic$fitted.values, plot = TRUE, legacy.axes = TRUE)
## 
## Data: logistic$fitted.values in 14 controls (social_media_subset_encoded$Morning_tireness No) < 7 cases (social_media_subset_encoded$Morning_tireness Yes).
## Area under the curve: 1
roc(social_media_subset_encoded$Morning_tireness,logistic$fitted.values,plot=TRUE, legacy.axes=TRUE, xlab="False Positive Percentage", ylab="True Postive Percentage")
## Setting levels: control = No, case = Yes
## Setting direction: controls < cases

## 
## Call:
## roc.default(response = social_media_subset_encoded$Morning_tireness,     predictor = logistic$fitted.values, plot = TRUE, legacy.axes = TRUE,     xlab = "False Positive Percentage", ylab = "True Postive Percentage")
## 
## Data: logistic$fitted.values in 14 controls (social_media_subset_encoded$Morning_tireness No) < 7 cases (social_media_subset_encoded$Morning_tireness Yes).
## Area under the curve: 1
roc(social_media_subset_encoded$Morning_tireness,logistic$fitted.values,plot=TRUE, legacy.axes=TRUE, xlab="False Positive Percentage", ylab="True Postive Percentage", col="#377eb8", lwd=4)
## Setting levels: control = No, case = Yes
## Setting direction: controls < cases
## 
## Call:
## roc.default(response = social_media_subset_encoded$Morning_tireness,     predictor = logistic$fitted.values, plot = TRUE, legacy.axes = TRUE,     xlab = "False Positive Percentage", ylab = "True Postive Percentage",     col = "#377eb8", lwd = 4)
## 
## Data: logistic$fitted.values in 14 controls (social_media_subset_encoded$Morning_tireness No) < 7 cases (social_media_subset_encoded$Morning_tireness Yes).
## Area under the curve: 1
roc(social_media_subset_encoded$Morning_tireness,logistic$fitted.values,plot=TRUE, legacy.axes=TRUE, xlab="False Positive Percentage", ylab="True Postive Percentage", col="#377eb8", lwd=4)
## Setting levels: control = No, case = Yes
## Setting direction: controls < cases

## 
## Call:
## roc.default(response = social_media_subset_encoded$Morning_tireness,     predictor = logistic$fitted.values, plot = TRUE, legacy.axes = TRUE,     xlab = "False Positive Percentage", ylab = "True Postive Percentage",     col = "#377eb8", lwd = 4)
## 
## Data: logistic$fitted.values in 14 controls (social_media_subset_encoded$Morning_tireness No) < 7 cases (social_media_subset_encoded$Morning_tireness Yes).
## Area under the curve: 1
## If we want to find out the optimal threshold we can store the
## data used to make the ROC graph in a variable...
roc.info <- roc(social_media_subset_encoded$Morning_tireness, logistic$fitted.values, legacy.axes=TRUE)
## Setting levels: control = No, case = Yes
## Setting direction: controls < cases
str(roc.info)
## List of 15
##  $ percent           : logi FALSE
##  $ sensitivities     : num [1:16] 1 1 1 1 1 1 1 1 1 1 ...
##  $ specificities     : num [1:16] 0 0.429 0.5 0.571 0.643 ...
##  $ thresholds        : num [1:16] -Inf 0.00000000000114 0.00000000000259 0.0000000000029 0.00000000000677 ...
##  $ direction         : chr "<"
##  $ cases             : Named num [1:7] 1 1 1 1 1 ...
##   ..- attr(*, "names")= chr [1:7] "5" "7" "8" "13" ...
##  $ controls          : Named num [1:14] 0.000000000002278281 0.000000000165837733 0.000000000000000222 0.000000000000000222 0.000000000010644271 ...
##   ..- attr(*, "names")= chr [1:14] "1" "2" "3" "4" ...
##  $ fun.sesp          :function (thresholds, controls, cases, direction)  
##  $ auc               : 'auc' num 1
##   ..- attr(*, "partial.auc")= logi FALSE
##   ..- attr(*, "percent")= logi FALSE
##   ..- attr(*, "roc")=List of 15
##   .. ..$ percent           : logi FALSE
##   .. ..$ sensitivities     : num [1:16] 1 1 1 1 1 1 1 1 1 1 ...
##   .. ..$ specificities     : num [1:16] 0 0.429 0.5 0.571 0.643 ...
##   .. ..$ thresholds        : num [1:16] -Inf 0.00000000000114 0.00000000000259 0.0000000000029 0.00000000000677 ...
##   .. ..$ direction         : chr "<"
##   .. ..$ cases             : Named num [1:7] 1 1 1 1 1 ...
##   .. .. ..- attr(*, "names")= chr [1:7] "5" "7" "8" "13" ...
##   .. ..$ controls          : Named num [1:14] 0.000000000002278281 0.000000000165837733 0.000000000000000222 0.000000000000000222 0.000000000010644271 ...
##   .. .. ..- attr(*, "names")= chr [1:14] "1" "2" "3" "4" ...
##   .. ..$ fun.sesp          :function (thresholds, controls, cases, direction)  
##   .. ..$ auc               : 'auc' num 1
##   .. .. ..- attr(*, "partial.auc")= logi FALSE
##   .. .. ..- attr(*, "percent")= logi FALSE
##   .. .. ..- attr(*, "roc")=List of 8
##   .. .. .. ..$ percent      : logi FALSE
##   .. .. .. ..$ sensitivities: num [1:16] 1 1 1 1 1 1 1 1 1 1 ...
##   .. .. .. ..$ specificities: num [1:16] 0 0.429 0.5 0.571 0.643 ...
##   .. .. .. ..$ thresholds   : num [1:16] -Inf 0.00000000000114 0.00000000000259 0.0000000000029 0.00000000000677 ...
##   .. .. .. ..$ direction    : chr "<"
##   .. .. .. ..$ cases        : Named num [1:7] 1 1 1 1 1 ...
##   .. .. .. .. ..- attr(*, "names")= chr [1:7] "5" "7" "8" "13" ...
##   .. .. .. ..$ controls     : Named num [1:14] 0.000000000002278281 0.000000000165837733 0.000000000000000222 0.000000000000000222 0.000000000010644271 ...
##   .. .. .. .. ..- attr(*, "names")= chr [1:14] "1" "2" "3" "4" ...
##   .. .. .. ..$ fun.sesp     :function (thresholds, controls, cases, direction)  
##   .. .. .. ..- attr(*, "class")= chr "roc"
##   .. ..$ call              : language roc.default(response = social_media_subset_encoded$Morning_tireness, predictor = logistic$fitted.values,      leg| __truncated__
##   .. ..$ original.predictor: Named num [1:21] 0.000000000002278281 0.000000000165837733 0.000000000000000222 0.000000000000000222 0.999999999999999778 ...
##   .. .. ..- attr(*, "names")= chr [1:21] "1" "2" "3" "4" ...
##   .. ..$ original.response : Factor w/ 2 levels "No","Yes": 1 1 1 1 2 1 2 2 1 1 ...
##   .. ..$ predictor         : Named num [1:21] 0.000000000002278281 0.000000000165837733 0.000000000000000222 0.000000000000000222 0.999999999999999778 ...
##   .. .. ..- attr(*, "names")= chr [1:21] "1" "2" "3" "4" ...
##   .. ..$ response          : Factor w/ 2 levels "No","Yes": 1 1 1 1 2 1 2 2 1 1 ...
##   .. ..$ levels            : chr [1:2] "No" "Yes"
##   .. ..- attr(*, "class")= chr "roc"
##  $ call              : language roc.default(response = social_media_subset_encoded$Morning_tireness, predictor = logistic$fitted.values,      leg| __truncated__
##  $ original.predictor: Named num [1:21] 0.000000000002278281 0.000000000165837733 0.000000000000000222 0.000000000000000222 0.999999999999999778 ...
##   ..- attr(*, "names")= chr [1:21] "1" "2" "3" "4" ...
##  $ original.response : Factor w/ 2 levels "No","Yes": 1 1 1 1 2 1 2 2 1 1 ...
##  $ predictor         : Named num [1:21] 0.000000000002278281 0.000000000165837733 0.000000000000000222 0.000000000000000222 0.999999999999999778 ...
##   ..- attr(*, "names")= chr [1:21] "1" "2" "3" "4" ...
##  $ response          : Factor w/ 2 levels "No","Yes": 1 1 1 1 2 1 2 2 1 1 ...
##  $ levels            : chr [1:2] "No" "Yes"
##  - attr(*, "class")= chr "roc"
## tpp = true positive percentage
## fpp = false positive precentage
roc.df <- data.frame(tpp=roc.info$sensitivities*100, fpp=(1 - roc.info$specificities)*100,thresholds=roc.info$thresholds)
roc.df
##          tpp        fpp           thresholds
## 1  100.00000 100.000000                 -Inf
## 2  100.00000  57.142857 0.000000000001139251
## 3  100.00000  50.000000 0.000000000002589491
## 4  100.00000  42.857143 0.000000000002900701
## 5  100.00000  35.714286 0.000000000006772486
## 6  100.00000  28.571429 0.000000000012405353
## 7  100.00000  21.428571 0.000000000016296354
## 8  100.00000  14.285714 0.000000000019569814
## 9  100.00000   7.142857 0.000000000093275544
## 10 100.00000   0.000000 0.500000000030458192
## 11  85.71429   0.000000 0.999999999917872584
## 12  71.42857   0.000000 0.999999999956160401
## 13  57.14286   0.000000 0.999999999984371835
## 14  42.85714   0.000000 0.999999999998422373
## 15  28.57143   0.000000 0.999999999999877542
## 16   0.00000   0.000000                  Inf
head(roc.df) 
##   tpp       fpp           thresholds
## 1 100 100.00000                 -Inf
## 2 100  57.14286 0.000000000001139251
## 3 100  50.00000 0.000000000002589491
## 4 100  42.85714 0.000000000002900701
## 5 100  35.71429 0.000000000006772486
## 6 100  28.57143 0.000000000012405353

Inferences: As the threshold decreases from Inf to 0.000000000012405353, the true positive percentage (tpp) tends to decrease, while the false positive percentage (fpp) tends to increase.

Lowering the threshold allows the model to classify more observations as positive, leading to an increase in true positives (tpp). However, this also increases the likelihood of incorrectly classifying negative cases as positive, resulting in higher false positives (fpp).

The optimal threshold depends on the specific context and the trade-off between true positives and false positives that the model can tolerate.

## head() will show us the values for the upper right-hand corner of the ROC graph, when the threshold is so low
## (negative infinity) that every single sample is called "obese".
## Thus TPP = 100% and FPP = 100%
tail(roc.df) 
##         tpp fpp thresholds
## 11 85.71429   0          1
## 12 71.42857   0          1
## 13 57.14286   0          1
## 14 42.85714   0          1
## 15 28.57143   0          1
## 16  0.00000   0        Inf
## tail() will show us the values for the lower left-hand corner
## of the ROC graph, when the threshold is so high (infinity)
## that every single sample is called "not obese".
## Thus, TPP = 0% and FPP = 0%
## now let's look at the thresholds between TPP 60% and 80%
roc.df[roc.df$tpp > 60 & roc.df$tpp < 80,]
##         tpp fpp thresholds
## 12 71.42857   0          1
roc(social_media_subset_encoded$Morning_tireness,logistic$fitted.values,plot=TRUE, legacy.axes=TRUE, xlab="False Positive Percentage", ylab="True Postive Percentage", col="#377eb8", lwd=4, percent=TRUE)
## Setting levels: control = No, case = Yes
## Setting direction: controls < cases

## 
## Call:
## roc.default(response = social_media_subset_encoded$Morning_tireness,     predictor = logistic$fitted.values, percent = TRUE, plot = TRUE,     legacy.axes = TRUE, xlab = "False Positive Percentage", ylab = "True Postive Percentage",     col = "#377eb8", lwd = 4)
## 
## Data: logistic$fitted.values in 14 controls (social_media_subset_encoded$Morning_tireness No) < 7 cases (social_media_subset_encoded$Morning_tireness Yes).
## Area under the curve: 100%
roc(social_media_subset_encoded$Morning_tireness,logistic$fitted.values,plot=TRUE, legacy.axes=TRUE, xlab="False Positive Percentage", ylab="True Postive Percentage", col="#377eb8", lwd=4, percent=TRUE, print.auc=TRUE)
## Setting levels: control = No, case = Yes
## Setting direction: controls < cases

## 
## Call:
## roc.default(response = social_media_subset_encoded$Morning_tireness,     predictor = logistic$fitted.values, percent = TRUE, plot = TRUE,     legacy.axes = TRUE, xlab = "False Positive Percentage", ylab = "True Postive Percentage",     col = "#377eb8", lwd = 4, print.auc = TRUE)
## 
## Data: logistic$fitted.values in 14 controls (social_media_subset_encoded$Morning_tireness No) < 7 cases (social_media_subset_encoded$Morning_tireness Yes).
## Area under the curve: 100%
roc(social_media_subset_encoded$Morning_tireness,logistic$fitted.values,plot=TRUE, legacy.axes=TRUE, xlab="False Positive Percentage", ylab="True Postive Percentage", col="#377eb8", lwd=4, percent=TRUE, print.auc=TRUE, partial.auc=c(100, 90), auc.polygon = TRUE, auc.polygon.col = "#377eb822", print.auc.x=45)
## Setting levels: control = No, case = Yes
## Setting direction: controls < cases

## 
## Call:
## roc.default(response = social_media_subset_encoded$Morning_tireness,     predictor = logistic$fitted.values, percent = TRUE, plot = TRUE,     legacy.axes = TRUE, xlab = "False Positive Percentage", ylab = "True Postive Percentage",     col = "#377eb8", lwd = 4, print.auc = TRUE, partial.auc = c(100,         90), auc.polygon = TRUE, auc.polygon.col = "#377eb822",     print.auc.x = 45)
## 
## Data: logistic$fitted.values in 14 controls (social_media_subset_encoded$Morning_tireness No) < 7 cases (social_media_subset_encoded$Morning_tireness Yes).
## Partial area under the curve (specificity 100%-90%): 10%
  1. Model Accuracy (2 points)

Inference: Based on the ROC curve and AUC value, we can infer that the logistic regression model (logistic_simple) has good discriminative ability in predicting morning tiredness.

An AUC value of 86.73% indicates that the model performs well above chance (random guessing), suggesting that it effectively separates individuals with morning tiredness from those without.

The ROC curve’s position relative to the diagonal (chance line) further confirms the model’s performance compared to random guessing.

# Lets do two roc plots to understand which model is better
roc(social_media_subset_encoded$Morning_tireness, logistic_simple$fitted.values, plot=TRUE, legacy.axes=TRUE, percent=TRUE, xlab="False Positive Percentage", ylab="True Postive Percentage", col="#377eb8", lwd=4, print.auc=TRUE)
## Setting levels: control = No, case = Yes
## Setting direction: controls < cases
## 
## Call:
## roc.default(response = social_media_subset_encoded$Morning_tireness,     predictor = logistic_simple$fitted.values, percent = TRUE,     plot = TRUE, legacy.axes = TRUE, xlab = "False Positive Percentage",     ylab = "True Postive Percentage", col = "#377eb8", lwd = 4,     print.auc = TRUE)
## 
## Data: logistic_simple$fitted.values in 14 controls (social_media_subset_encoded$Morning_tireness No) < 7 cases (social_media_subset_encoded$Morning_tireness Yes).
## Area under the curve: 86.73%
# Lets add the other graph
plot.roc(social_media_subset_encoded$Morning_tireness, logistic$fitted.values, percent=TRUE, col="#4daf4a", lwd=4, print.auc=TRUE, add=TRUE, print.auc.y=40)
## Setting levels: control = No, case = Yes
## Setting direction: controls < cases
legend("bottomright", legend=c("Simple", "Non Simple"), col=c("#377eb8", "#4daf4a"), lwd=4) 

# Loop through each column in time_columns
social_media_cleaned[time_columns] <- lapply(social_media_cleaned[time_columns], function(x) {
  # Calculate mean of the column excluding NA values
  mean_value <- mean(x, na.rm = TRUE)
  # Replace NA values with the mean
  x[is.na(x)] <- mean_value
  return(x)
})

# Print the updated data frame
print(social_media_cleaned)
## # A tibble: 21 × 16
##    Instagram_Time Linkedin_Time Snapchat_Time Twitter_Time Whatsapp_Time
##             <dbl>         <dbl>         <dbl>        <dbl>         <dbl>
##  1          3.5           4             1            5             1    
##  2          0.322         0.217         0.153        0             0.174
##  3          0.157         0.292         0.503        0             0.410
##  4          0.224         0.222         0.503        0             0.221
##  5          0             1.11          0            0.290         0.125
##  6          0.722         0.292         0.503        0             0.5  
##  7          0.224         0.167         0            0             0.25 
##  8          0.292         0.167         0.125        0             0.417
##  9          0.360        10             3.83         0             6.15 
## 10          0.722         0             0            0             0.908
## # ℹ 11 more rows
## # ℹ 11 more variables: Youtube_Time <dbl>, OTT_Time <dbl>, Reddit_Time <dbl>,
## #   `Application Type` <chr>, Interview_call_received <chr>, Networking <chr>,
## #   Learning <dbl>, Mood_Productivity <chr>, Morning_tireness <chr>,
## #   Morning_tireness <chr>, Weekly_Feelings <dbl>
# Find columns with "_Time"
time_columns <- grep("_Time$", names(social_media_cleaned), value = TRUE)
time_columns
## [1] "Instagram_Time" "Linkedin_Time"  "Snapchat_Time"  "Twitter_Time"  
## [5] "Whatsapp_Time"  "Youtube_Time"   "OTT_Time"       "Reddit_Time"
# Define additional columns to keep
additional_columns <- c("Morning_tireness", "Application Type")

# Combine time columns and additional columns to keep
columns_to_keep <- c(time_columns, additional_columns)

# Select columns to keep from the dataframe
social_media_subset <- social_media_cleaned[columns_to_keep]
social_media_subset
## # A tibble: 21 × 10
##    Instagram_Time Linkedin_Time Snapchat_Time Twitter_Time Whatsapp_Time
##             <dbl>         <dbl>         <dbl>        <dbl>         <dbl>
##  1          3.5           4             1            5             1    
##  2          0.322         0.217         0.153        0             0.174
##  3          0.157         0.292         0.503        0             0.410
##  4          0.224         0.222         0.503        0             0.221
##  5          0             1.11          0            0.290         0.125
##  6          0.722         0.292         0.503        0             0.5  
##  7          0.224         0.167         0            0             0.25 
##  8          0.292         0.167         0.125        0             0.417
##  9          0.360        10             3.83         0             6.15 
## 10          0.722         0             0            0             0.908
## # ℹ 11 more rows
## # ℹ 5 more variables: Youtube_Time <dbl>, OTT_Time <dbl>, Reddit_Time <dbl>,
## #   Morning_tireness <chr>, `Application Type` <chr>
# Load the caret package
library(caret)

# Specify the column names for one-hot encoding, excluding Morning_tireness
columns <- setdiff(names(social_media_subset), "Morning_tireness")

# Create a formula for one-hot encoding excluding Morning_tireness
formula_str <- paste("Morning_tireness ~ .", collapse = " + ")

# Convert the formula string to a formula object
formula <- as.formula(formula_str)

# Create dummy variables
dummy <- dummyVars(formula, data = social_media_subset)

# Apply one-hot encoding
social_media_subset_encoded <- predict(dummy, newdata = social_media_subset)

# Convert the result to a data frame
social_media_subset_encoded <- as.data.frame(social_media_subset_encoded)

# Convert Morning_tireness back to a categorical variable
social_media_subset_encoded$Morning_tireness <- as.factor(social_media_subset$Morning_tireness)


social_media_subset_encoded1 <- social_media_subset_encoded
head(social_media_subset_encoded)
##   Instagram_Time Linkedin_Time Snapchat_Time Twitter_Time Whatsapp_Time
## 1      3.5000000     4.0000000     1.0000000    5.0000000     1.0000000
## 2      0.3222222     0.2166667     0.1534722    0.0000000     0.1743056
## 3      0.1569444     0.2916667     0.5031250    0.0000000     0.4097222
## 4      0.2243056     0.2215278     0.5031250    0.0000000     0.2208333
## 5      0.0000000     1.1123264     0.0000000    0.2899306     0.1250000
## 6      0.7221258     0.2916667     0.5031250    0.0000000     0.5000000
##   Youtube_Time  OTT_Time Reddit_Time `Application Type`Learning
## 1    2.5000000 14.500000   2.5000000                          0
## 2    0.1770833  0.000000   0.0000000                          0
## 3    0.5644097  1.444605   0.0000000                          0
## 4    0.5644097  1.444605   0.0000000                          0
## 5    0.1458333  1.444605   0.1550926                          0
## 6    0.2916667  0.125000   0.0000000                          0
##   `Application Type`Netflix `Application Type`No Social Media
## 1                         0                                 0
## 2                         0                                 0
## 3                         0                                 0
## 4                         0                                 0
## 5                         0                                 0
## 6                         0                                 0
##   `Application Type`OTT `Application Type`Social media
## 1                     1                              0
## 2                     0                              0
## 3                     0                              0
## 4                     0                              0
## 5                     1                              0
## 6                     0                              0
##   `Application Type`Social Media Morning_tireness
## 1                              0               No
## 2                              1               No
## 3                              1               No
## 4                              1               No
## 5                              0              Yes
## 6                              1               No
social_media_subset_encoded1$Morning_tireness <- as.numeric(as.factor(social_media_subset_encoded1$Morning_tireness)) - 1
social_media_subset_encoded1
##    Instagram_Time Linkedin_Time Snapchat_Time Twitter_Time Whatsapp_Time
## 1       3.5000000     4.0000000     1.0000000    5.0000000     1.0000000
## 2       0.3222222     0.2166667     0.1534722    0.0000000     0.1743056
## 3       0.1569444     0.2916667     0.5031250    0.0000000     0.4097222
## 4       0.2243056     0.2215278     0.5031250    0.0000000     0.2208333
## 5       0.0000000     1.1123264     0.0000000    0.2899306     0.1250000
## 6       0.7221258     0.2916667     0.5031250    0.0000000     0.5000000
## 7       0.2236111     0.1666667     0.0000000    0.0000000     0.2500000
## 8       0.2916667     0.1666667     0.1250000    0.0000000     0.4166667
## 9       0.3604167    10.0000000     3.8333333    0.0000000     6.1500000
## 10      0.7221258     0.0000000     0.0000000    0.0000000     0.9077851
## 11      0.1909722     1.1123264     0.5031250    0.1006944     0.9077851
## 12      0.1388889     0.1041667     0.5031250    0.1180556     0.1527778
## 13      5.3003472     1.5208333     0.6208333    0.0000000     4.0208333
## 14      0.2500000     0.1250000     0.5031250    0.2899306     0.1423611
## 15      0.1937500     0.1562500     0.5031250    0.0000000     0.2708333
## 16      0.2916667     0.2083333     0.5031250    0.0000000     0.2083333
## 17      0.4083333     1.1123264     0.0000000    0.2899306     0.5562500
## 18      0.2833333     1.1123264     0.5031250    0.0000000     0.2895833
## 19      0.2361111     0.1631944     0.0000000    0.0000000     0.3715278
## 20      0.6256944     0.1645833     0.3048611    0.0000000     0.6395833
## 21      0.7221258     1.1123264     0.0000000    0.0000000     1.3493056
##    Youtube_Time   OTT_Time Reddit_Time `Application Type`Learning
## 1     2.5000000 14.5000000   2.5000000                          0
## 2     0.1770833  0.0000000   0.0000000                          0
## 3     0.5644097  1.4446047   0.0000000                          0
## 4     0.5644097  1.4446047   0.0000000                          0
## 5     0.1458333  1.4446047   0.1550926                          0
## 6     0.2916667  0.1250000   0.0000000                          0
## 7     0.1250000  0.0000000   0.0000000                          0
## 8     0.5644097  0.1250000   0.0000000                          0
## 9     4.0000000  3.0000000   0.0000000                          0
## 10    0.1250000  0.0000000   0.0000000                          0
## 11    0.5644097  0.0000000   0.0000000                          1
## 12    0.1041667  1.4446047   0.0000000                          0
## 13    0.5416667  0.5104167   0.1550926                          0
## 14    0.1041667  1.4446047   0.0000000                          0
## 15    0.1305556  1.4446047   0.2916667                          0
## 16    0.2083333  1.4446047   0.1550926                          0
## 17    0.1472222  1.4446047   0.0000000                          0
## 18    0.5644097  0.1027778   0.0000000                          0
## 19    0.2145833  0.0000000   0.0000000                          0
## 20    0.2152778  0.4166667   0.0000000                          0
## 21    0.0000000  0.0000000   0.0000000                          0
##    `Application Type`Netflix `Application Type`No Social Media
## 1                          0                                 0
## 2                          0                                 0
## 3                          0                                 0
## 4                          0                                 0
## 5                          0                                 0
## 6                          0                                 0
## 7                          0                                 0
## 8                          0                                 0
## 9                          0                                 0
## 10                         0                                 1
## 11                         0                                 0
## 12                         0                                 0
## 13                         0                                 0
## 14                         0                                 1
## 15                         1                                 0
## 16                         0                                 0
## 17                         0                                 0
## 18                         0                                 0
## 19                         0                                 1
## 20                         0                                 0
## 21                         0                                 0
##    `Application Type`OTT `Application Type`Social media
## 1                      1                              0
## 2                      0                              0
## 3                      0                              0
## 4                      0                              0
## 5                      1                              0
## 6                      0                              0
## 7                      0                              1
## 8                      0                              1
## 9                      0                              0
## 10                     0                              0
## 11                     0                              0
## 12                     1                              0
## 13                     0                              0
## 14                     0                              0
## 15                     0                              0
## 16                     0                              0
## 17                     0                              1
## 18                     0                              0
## 19                     0                              0
## 20                     0                              0
## 21                     0                              0
##    `Application Type`Social Media Morning_tireness
## 1                               0                0
## 2                               1                0
## 3                               1                0
## 4                               1                0
## 5                               0                1
## 6                               1                0
## 7                               0                1
## 8                               0                1
## 9                               1                0
## 10                              0                0
## 11                              0                0
## 12                              0                0
## 13                              1                1
## 14                              0                0
## 15                              0                0
## 16                              1                1
## 17                              0                0
## 18                              1                1
## 19                              0                0
## 20                              1                0
## 21                              1                1
smp_size_raw <- floor(0.75 * nrow(social_media_subset_encoded1))
smp_size_raw
## [1] 15
train_ind_raw <- sample(nrow(social_media_subset_encoded1), size = smp_size_raw)

train_ind_raw
##  [1] 20  7  9  2 21 18  8 15 16 10 14  5 12 19 11
train_raw.df <- as.data.frame(social_media_subset_encoded1[train_ind_raw, ])
train_raw.df
##    Instagram_Time Linkedin_Time Snapchat_Time Twitter_Time Whatsapp_Time
## 20      0.6256944     0.1645833     0.3048611    0.0000000     0.6395833
## 7       0.2236111     0.1666667     0.0000000    0.0000000     0.2500000
## 9       0.3604167    10.0000000     3.8333333    0.0000000     6.1500000
## 2       0.3222222     0.2166667     0.1534722    0.0000000     0.1743056
## 21      0.7221258     1.1123264     0.0000000    0.0000000     1.3493056
## 18      0.2833333     1.1123264     0.5031250    0.0000000     0.2895833
## 8       0.2916667     0.1666667     0.1250000    0.0000000     0.4166667
## 15      0.1937500     0.1562500     0.5031250    0.0000000     0.2708333
## 16      0.2916667     0.2083333     0.5031250    0.0000000     0.2083333
## 10      0.7221258     0.0000000     0.0000000    0.0000000     0.9077851
## 14      0.2500000     0.1250000     0.5031250    0.2899306     0.1423611
## 5       0.0000000     1.1123264     0.0000000    0.2899306     0.1250000
## 12      0.1388889     0.1041667     0.5031250    0.1180556     0.1527778
## 19      0.2361111     0.1631944     0.0000000    0.0000000     0.3715278
## 11      0.1909722     1.1123264     0.5031250    0.1006944     0.9077851
##    Youtube_Time  OTT_Time Reddit_Time `Application Type`Learning
## 20    0.2152778 0.4166667   0.0000000                          0
## 7     0.1250000 0.0000000   0.0000000                          0
## 9     4.0000000 3.0000000   0.0000000                          0
## 2     0.1770833 0.0000000   0.0000000                          0
## 21    0.0000000 0.0000000   0.0000000                          0
## 18    0.5644097 0.1027778   0.0000000                          0
## 8     0.5644097 0.1250000   0.0000000                          0
## 15    0.1305556 1.4446047   0.2916667                          0
## 16    0.2083333 1.4446047   0.1550926                          0
## 10    0.1250000 0.0000000   0.0000000                          0
## 14    0.1041667 1.4446047   0.0000000                          0
## 5     0.1458333 1.4446047   0.1550926                          0
## 12    0.1041667 1.4446047   0.0000000                          0
## 19    0.2145833 0.0000000   0.0000000                          0
## 11    0.5644097 0.0000000   0.0000000                          1
##    `Application Type`Netflix `Application Type`No Social Media
## 20                         0                                 0
## 7                          0                                 0
## 9                          0                                 0
## 2                          0                                 0
## 21                         0                                 0
## 18                         0                                 0
## 8                          0                                 0
## 15                         1                                 0
## 16                         0                                 0
## 10                         0                                 1
## 14                         0                                 1
## 5                          0                                 0
## 12                         0                                 0
## 19                         0                                 1
## 11                         0                                 0
##    `Application Type`OTT `Application Type`Social media
## 20                     0                              0
## 7                      0                              1
## 9                      0                              0
## 2                      0                              0
## 21                     0                              0
## 18                     0                              0
## 8                      0                              1
## 15                     0                              0
## 16                     0                              0
## 10                     0                              0
## 14                     0                              0
## 5                      1                              0
## 12                     1                              0
## 19                     0                              0
## 11                     0                              0
##    `Application Type`Social Media Morning_tireness
## 20                              1                0
## 7                               0                1
## 9                               1                0
## 2                               1                0
## 21                              1                1
## 18                              1                1
## 8                               0                1
## 15                              0                0
## 16                              1                1
## 10                              0                0
## 14                              0                0
## 5                               0                1
## 12                              0                0
## 19                              0                0
## 11                              0                0
test_raw.df <- as.data.frame(social_media_subset_encoded1[-train_ind_raw, ])
test_raw.df
##    Instagram_Time Linkedin_Time Snapchat_Time Twitter_Time Whatsapp_Time
## 1       3.5000000     4.0000000     1.0000000    5.0000000     1.0000000
## 3       0.1569444     0.2916667     0.5031250    0.0000000     0.4097222
## 4       0.2243056     0.2215278     0.5031250    0.0000000     0.2208333
## 6       0.7221258     0.2916667     0.5031250    0.0000000     0.5000000
## 13      5.3003472     1.5208333     0.6208333    0.0000000     4.0208333
## 17      0.4083333     1.1123264     0.0000000    0.2899306     0.5562500
##    Youtube_Time   OTT_Time Reddit_Time `Application Type`Learning
## 1     2.5000000 14.5000000   2.5000000                          0
## 3     0.5644097  1.4446047   0.0000000                          0
## 4     0.5644097  1.4446047   0.0000000                          0
## 6     0.2916667  0.1250000   0.0000000                          0
## 13    0.5416667  0.5104167   0.1550926                          0
## 17    0.1472222  1.4446047   0.0000000                          0
##    `Application Type`Netflix `Application Type`No Social Media
## 1                          0                                 0
## 3                          0                                 0
## 4                          0                                 0
## 6                          0                                 0
## 13                         0                                 0
## 17                         0                                 0
##    `Application Type`OTT `Application Type`Social media
## 1                      1                              0
## 3                      0                              0
## 4                      0                              0
## 6                      0                              0
## 13                     0                              0
## 17                     0                              1
##    `Application Type`Social Media Morning_tireness
## 1                               0                0
## 3                               1                0
## 4                               1                0
## 6                               1                0
## 13                              1                1
## 17                              0                0
train_raw.df <- as.data.frame(social_media_subset_encoded1[train_ind_raw, ])
train_raw.df
##    Instagram_Time Linkedin_Time Snapchat_Time Twitter_Time Whatsapp_Time
## 20      0.6256944     0.1645833     0.3048611    0.0000000     0.6395833
## 7       0.2236111     0.1666667     0.0000000    0.0000000     0.2500000
## 9       0.3604167    10.0000000     3.8333333    0.0000000     6.1500000
## 2       0.3222222     0.2166667     0.1534722    0.0000000     0.1743056
## 21      0.7221258     1.1123264     0.0000000    0.0000000     1.3493056
## 18      0.2833333     1.1123264     0.5031250    0.0000000     0.2895833
## 8       0.2916667     0.1666667     0.1250000    0.0000000     0.4166667
## 15      0.1937500     0.1562500     0.5031250    0.0000000     0.2708333
## 16      0.2916667     0.2083333     0.5031250    0.0000000     0.2083333
## 10      0.7221258     0.0000000     0.0000000    0.0000000     0.9077851
## 14      0.2500000     0.1250000     0.5031250    0.2899306     0.1423611
## 5       0.0000000     1.1123264     0.0000000    0.2899306     0.1250000
## 12      0.1388889     0.1041667     0.5031250    0.1180556     0.1527778
## 19      0.2361111     0.1631944     0.0000000    0.0000000     0.3715278
## 11      0.1909722     1.1123264     0.5031250    0.1006944     0.9077851
##    Youtube_Time  OTT_Time Reddit_Time `Application Type`Learning
## 20    0.2152778 0.4166667   0.0000000                          0
## 7     0.1250000 0.0000000   0.0000000                          0
## 9     4.0000000 3.0000000   0.0000000                          0
## 2     0.1770833 0.0000000   0.0000000                          0
## 21    0.0000000 0.0000000   0.0000000                          0
## 18    0.5644097 0.1027778   0.0000000                          0
## 8     0.5644097 0.1250000   0.0000000                          0
## 15    0.1305556 1.4446047   0.2916667                          0
## 16    0.2083333 1.4446047   0.1550926                          0
## 10    0.1250000 0.0000000   0.0000000                          0
## 14    0.1041667 1.4446047   0.0000000                          0
## 5     0.1458333 1.4446047   0.1550926                          0
## 12    0.1041667 1.4446047   0.0000000                          0
## 19    0.2145833 0.0000000   0.0000000                          0
## 11    0.5644097 0.0000000   0.0000000                          1
##    `Application Type`Netflix `Application Type`No Social Media
## 20                         0                                 0
## 7                          0                                 0
## 9                          0                                 0
## 2                          0                                 0
## 21                         0                                 0
## 18                         0                                 0
## 8                          0                                 0
## 15                         1                                 0
## 16                         0                                 0
## 10                         0                                 1
## 14                         0                                 1
## 5                          0                                 0
## 12                         0                                 0
## 19                         0                                 1
## 11                         0                                 0
##    `Application Type`OTT `Application Type`Social media
## 20                     0                              0
## 7                      0                              1
## 9                      0                              0
## 2                      0                              0
## 21                     0                              0
## 18                     0                              0
## 8                      0                              1
## 15                     0                              0
## 16                     0                              0
## 10                     0                              0
## 14                     0                              0
## 5                      1                              0
## 12                     1                              0
## 19                     0                              0
## 11                     0                              0
##    `Application Type`Social Media Morning_tireness
## 20                              1                0
## 7                               0                1
## 9                               1                0
## 2                               1                0
## 21                              1                1
## 18                              1                1
## 8                               0                1
## 15                              0                0
## 16                              1                1
## 10                              0                0
## 14                              0                0
## 5                               0                1
## 12                              0                0
## 19                              0                0
## 11                              0                0
# Assuming 'train_raw.df' is your data frame and '10' is the index of the constant variable
  1. Model Development (2 points) Prior probabilities of groups: The prior probability of group 0 (0.6) is higher than group 1 (0.4), indicating that there are more observations in group 0 than in group 1.

Group means: Group 0 tends to have higher values for Instagram_Time, Linkedin_Time, Snapchat_Time, Twitter_Time, and Whatsapp_Time compared to group 1.

Group 1 tends to have lower values for Instagram_Time, Linkedin_Time, Snapchat_Time, Twitter_Time, and Whatsapp_Time compared to group 0.

Group 0 has higher values for Youtube_Time, OTT_Time, and Reddit_Time compared to group 1.

Group 1 has lower values for Youtube_Time, OTT_Time, and Reddit_Time compared to group 0.

Coefficients of linear discriminants:

The coefficients of the linear discriminants (LD1) indicate the importance of each predictor variable in distinguishing between the two groups.

Variables with larger absolute coefficients have a greater influence on the classification.

For example, Reddit_Time has a large positive coefficient, indicating that it strongly contributes to the separation between the two groups.

Based on these results, we can infer that certain social media usage patterns and application types are associated with different levels of morning tiredness. Further analysis and interpretation may be needed to understand the specific relationships between these variables and morning tiredness.

df.lda <- lda(formula = train_raw.df$Morning_tireness ~ ., data = train_raw.df)
## Warning in lda.default(x, grouping, ...): variables are collinear
df.lda
## Call:
## lda(train_raw.df$Morning_tireness ~ ., data = train_raw.df)
## 
## Prior probabilities of groups:
##   0   1 
## 0.6 0.4 
## 
## Group means:
##   Instagram_Time Linkedin_Time Snapchat_Time Twitter_Time Whatsapp_Time
## 0      0.3377979      1.338021     0.7004630   0.05652006     1.0796621
## 1      0.3020673      0.646441     0.1885417   0.04832176     0.4398148
##   Youtube_Time  OTT_Time Reddit_Time `\\`Application Type\\`Learning`
## 0    0.6261381 0.8611645  0.03240741                        0.1111111
## 1    0.2679977 0.5194979  0.05169753                        0.0000000
##   `\\`Application Type\\`Netflix` `\\`Application Type\\`No Social Media`
## 0                       0.1111111                               0.3333333
## 1                       0.0000000                               0.0000000
##   `\\`Application Type\\`OTT` `\\`Application Type\\`Social media`
## 0                   0.1111111                            0.0000000
## 1                   0.1666667                            0.3333333
##   `\\`Application Type\\`Social Media`
## 0                            0.3333333
## 1                            0.5000000
## 
## Coefficients of linear discriminants:
##                                                  LD1
## Instagram_Time                            59.7999483
## Linkedin_Time                             34.1290139
## Snapchat_Time                            -57.9325810
## Twitter_Time                            -131.5309522
## Whatsapp_Time                            -45.0705562
## Youtube_Time                               7.4639778
## OTT_Time                                  39.5488422
## Reddit_Time                             -153.5981040
## `\\`Application Type\\`Learning`          33.8592743
## `\\`Application Type\\`Netflix`           15.2761833
## `\\`Application Type\\`No Social Media`    0.4235796
## `\\`Application Type\\`OTT`              -14.5626567
## `\\`Application Type\\`Social media`       6.0332345
## `\\`Application Type\\`Social Media`      -7.8535152
  1. Model Acceptance (2 points)

Prior probabilities of groups: Group 0 has a prior probability of 0.6, while Group 1 has a prior probability of 0.4. This indicates that there are more observations in Group 0 than in Group 1.

Group means:

Group 0 tends to have higher values for Instagram_Time, Linkedin_Time, Snapchat_Time, Twitter_Time, and Whatsapp_Time compared to Group 1.

Group 1 tends to have lower values for Instagram_Time, Linkedin_Time, Snapchat_Time, Twitter_Time, and Whatsapp_Time compared to Group 0.

Group 0 has higher values for Youtube_Time, OTT_Time, and Reddit_Time compared to Group 1.

Group 1 has lower values for Youtube_Time, OTT_Time, and Reddit_Time compared to Group 0.

Coefficients of linear discriminants:

The coefficients of the linear discriminants (LD1) indicate the importance of each predictor variable in distinguishing between the two groups.

Variables with larger absolute coefficients have a greater influence on the classification.

For example, Reddit_Time has a large positive coefficient, indicating that it strongly contributes to the separation between the two groups.

Based on these results, we can infer that certain social media usage patterns and application types are associated with different levels of morning tireness. Further analysis and interpretation may be needed to understand the specific relationships between these variables and morning tireness.

train_raw.df$Morning_tireness
##  [1] 0 1 0 0 1 1 1 0 1 0 0 1 0 0 0
summary(df.lda)
##         Length Class  Mode     
## prior    2     -none- numeric  
## counts   2     -none- numeric  
## means   28     -none- numeric  
## scaling 14     -none- numeric  
## lev      2     -none- character
## svd      1     -none- numeric  
## N        1     -none- numeric  
## call     3     -none- call     
## terms    3     terms  call     
## xlevels  0     -none- list
print(df.lda)
## Call:
## lda(train_raw.df$Morning_tireness ~ ., data = train_raw.df)
## 
## Prior probabilities of groups:
##   0   1 
## 0.6 0.4 
## 
## Group means:
##   Instagram_Time Linkedin_Time Snapchat_Time Twitter_Time Whatsapp_Time
## 0      0.3377979      1.338021     0.7004630   0.05652006     1.0796621
## 1      0.3020673      0.646441     0.1885417   0.04832176     0.4398148
##   Youtube_Time  OTT_Time Reddit_Time `\\`Application Type\\`Learning`
## 0    0.6261381 0.8611645  0.03240741                        0.1111111
## 1    0.2679977 0.5194979  0.05169753                        0.0000000
##   `\\`Application Type\\`Netflix` `\\`Application Type\\`No Social Media`
## 0                       0.1111111                               0.3333333
## 1                       0.0000000                               0.0000000
##   `\\`Application Type\\`OTT` `\\`Application Type\\`Social media`
## 0                   0.1111111                            0.0000000
## 1                   0.1666667                            0.3333333
##   `\\`Application Type\\`Social Media`
## 0                            0.3333333
## 1                            0.5000000
## 
## Coefficients of linear discriminants:
##                                                  LD1
## Instagram_Time                            59.7999483
## Linkedin_Time                             34.1290139
## Snapchat_Time                            -57.9325810
## Twitter_Time                            -131.5309522
## Whatsapp_Time                            -45.0705562
## Youtube_Time                               7.4639778
## OTT_Time                                  39.5488422
## Reddit_Time                             -153.5981040
## `\\`Application Type\\`Learning`          33.8592743
## `\\`Application Type\\`Netflix`           15.2761833
## `\\`Application Type\\`No Social Media`    0.4235796
## `\\`Application Type\\`OTT`              -14.5626567
## `\\`Application Type\\`Social media`       6.0332345
## `\\`Application Type\\`Social Media`      -7.8535152
par(mar = c(5, 5, 2, 2))  # Set margin size (bottom, left, top, right)
plot(df.lda)

  1. Prediction (2 points)

Predicted Classes:

The predicted classes for the observations in the test dataset are as follows:

Observation 3 is predicted to belong to class 1. Observation 4 is predicted to belong to class 1. Observation 6 is predicted to belong to class 0. Observation 9 is predicted to belong to class 1. Observation 16 is predicted to belong to class 1. Observation 20 is predicted to belong to class 0.

LD1 Scores:

The LD1 scores for the observations in the test dataset are also provided.

These scores represent the linear discriminant values for each observation, which are used to classify them into the respective classes.

Based on these predictions and LD1 scores, we can infer that the LDA model has assigned classes to each observation in the test dataset based on their social media usage patterns and application types. The LD1 scores provide additional information about the separation between the classes.

Further interpretation and analysis may be required to understand the implications of these results.

df.lda.predict <- predict(df.lda, newdata = test_raw.df)
df.lda.predict$class
## [1] 0 1 1 0 1 1
## Levels: 0 1
df.lda.predict$x
##            LD1
## 1  -229.182372
## 3    17.316910
## 4    27.464657
## 6    -7.178732
## 13  136.330706
## 17   55.539530
# Get the posteriors as a dataframe.
df.predict.posteriors <- as.data.frame(df.lda.predict$posterior)
df.predict.posteriors
##                                                                                                                                                                                                                                0
## 1  1.000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
## 3  0.000000000000000000000000000000000000000000000000000000000000000143955466619599753898967042786694037204142659902572631835937500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
## 4  0.000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000039118277684292288962249195538589674470131285488605499267578125000000000000000000000000000000000000000000000000000000
## 6  1.000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
## 13 0.000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
## 17 0.000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001346018
##                                           1
## 1  0.00000000000000000000000000000000000000
## 3  1.00000000000000000000000000000000000000
## 4  1.00000000000000000000000000000000000000
## 6  0.00000000000000000000000000000002156703
## 13 1.00000000000000000000000000000000000000
## 17 1.00000000000000000000000000000000000000
pred <- prediction(df.predict.posteriors[,2], test_raw.df$Morning_tireness)
pred
## A prediction instance
##   with 6 data points
colnames(df.predict.posteriors)
## [1] "0" "1"
str(df.predict.posteriors)
## 'data.frame':    6 obs. of  2 variables:
##  $ 0: num  1 0.0000000000000000000000000000000000000000000000000000000000000001439554666195997538989670427866940372041427 0.| __truncated__ ...
##  $ 1: num  0 1 1 0.0000000000000000000000000000000216 1 ...
head(df.predict.posteriors)
##                                                                                                                                                                                                                                0
## 1  1.000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
## 3  0.000000000000000000000000000000000000000000000000000000000000000143955466619599753898967042786694037204142659902572631835937500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
## 4  0.000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000039118277684292288962249195538589674470131285488605499267578125000000000000000000000000000000000000000000000000000000
## 6  1.000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
## 13 0.000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
## 17 0.000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001346018
##                                           1
## 1  0.00000000000000000000000000000000000000
## 3  1.00000000000000000000000000000000000000
## 4  1.00000000000000000000000000000000000000
## 6  0.00000000000000000000000000000002156703
## 13 1.00000000000000000000000000000000000000
## 17 1.00000000000000000000000000000000000000
roc.perf = performance(pred, measure = "tpr", x.measure = "fpr")
auc.train <- performance(pred, measure = "auc")
auc.train <- auc.train@y.values
plot(roc.perf)
abline(a=0, b= 1)
text(x = .25, y = .65 ,paste("AUC = ", round(auc.train[[1]],3), sep = ""))

  1. Model Accuracy (2 points)

A model accuracy of 0.3333 indicates that the model correctly classified approximately 33.33% of the observations in the test dataset. While this accuracy might seem low, it’s essential to consider the context of your specific problem and the baseline accuracy.

Inference:

The accuracy of the model suggests that it may not be performing well in predicting morning tiredness based on the provided features.

Further investigation into the features, model selection, and potential data preprocessing steps may be necessary to improve the model’s performance.

It’s also essential to compare the model’s accuracy with a baseline accuracy. For instance, if the classes in your dataset are imbalanced (e.g., one class is much more prevalent than the other), a naive classifier that always predicts the majority class could achieve a high accuracy but may not be useful.

In such cases, you should compare your model’s accuracy against the baseline accuracy to assess its effectiveness.

# Get the predicted classes from the LDA model
predicted_classes <- df.lda.predict$class

# Get the actual classes from the test dataset
actual_classes <- test_raw.df$Morning_tireness

# Calculate accuracy
accuracy <- mean(predicted_classes == actual_classes)
cat("Accuracy:", accuracy, "\n")
## Accuracy: 0.5
# Convert factor levels to numeric values
predicted_classes_numeric <- as.numeric(as.character(predicted_classes))
actual_classes_numeric <- as.numeric(as.character(actual_classes))

# Calculate residuals
residuals <- actual_classes_numeric - predicted_classes_numeric
cat("Residuals:", residuals, "\n")
## Residuals: 0 -1 -1 0 0 -1
  1. Residual Analysis (2 points)

Residual = -1: This means that the model predicted a class of 0 (negative class), but the actual class was 1 (positive class).

In other words, the model incorrectly classified these observations as belonging to the negative class when they actually belong to the positive class.

Residual = 0: This means that the model predicted the correct class for that observation. The model correctly classified these observations.

Interpretation:

Observation 1: The model predicted a class of 0, but the actual class was 1. This indicates a misclassification where the model incorrectly classified an observation as belonging to the negative class when it actually belongs to the positive class.

Observation 2: Similar to Observation 1, the model predicted a class of 0, but the actual class was 1, resulting in a misclassification.

Observation 3: The model predicted a class of 0, and the actual class was also 0. This indicates a correct classification where the model accurately classified an observation as belonging to the negative class.

Observation 4: Similar to Observations 1 and 2, the model incorrectly classified this observation as belonging to the negative class when it actually belongs to the positive class.

Observation 5: The model predicted a class of 0, and the actual class was also 0, indicating a correct classification

. Observation 6: Similar to Observations 1, 2, and 4, the model incorrectly classified this observation as belonging to the negative class when it actually belongs to the positive class.

***********5) Learnings and Takeaways (20 points)**********

Learnings and Takeaways:

WhatApp time, Instagram time are crucial for higher accuracy and better grouping.

Data Cleaning is crucial before every type of data science application

Understanding Data Complexity: The high variability and dimensions of social media data present challenges in model accuracy and predictability. This project reveals the importance of using methods like PCA to simplify the data without substantial information loss.

Significance of EDA: The EDA phase is crucial for uncovering patterns, anomalies, or correlations that can inform model building. Visualization tools like box plots, correlation heatmaps, and scree plots provide valuable insights that guide further analysis.

Model Selection and Evaluation: Choosing the right model is vital. Logistic regression and LDA are useful for binary outcomes. However, it’s also important to tune hyperparameters and compare different models using accuracy, ROC curves, and other statistical measures.

Impact of Social Media: The analysis highlights patterns between social media usage and factors like mood productivity and morning tiredness, suggesting potential real-life applications like developing guidelines for healthier social media habits.

Challenges in Modeling Social Behaviors: Social behaviors and their impacts on mood and productivity are complex and may not always lend themselves to straightforward predictive modeling. This underscores the need for advanced analytics and careful interpretation.

Importance of Data Preprocessing: Converting and cleaning data, such as handling null values, normalizing, and one-hot encoding, are critical preprocessing steps that significantly impact the performance of the models.

Application of Advanced Statistical Techniques: Utilizing advanced statistical techniques like clustering analysis and factor analysis can provide deeper insights into the data structure and the relationships between variables.